1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Debug Info: Reorder accessor to match field order.

llvm-svn: 182816
This commit is contained in:
David Blaikie 2013-05-29 02:05:07 +00:00
parent 81964ccca4
commit 9f5c0b787b

View File

@ -467,11 +467,6 @@ namespace llvm {
unsigned isOptimized() const;
/// getScopeLineNumber - Get the beginning of the scope of the
/// function, not necessarily where the name of the program
/// starts.
unsigned getScopeLineNumber() const { return getUnsignedField(19); }
/// Verify - Verify that a subprogram descriptor is well formed.
bool Verify() const;
@ -487,6 +482,11 @@ namespace llvm {
}
MDNode *getVariablesNodes() const;
DIArray getVariables() const;
/// getScopeLineNumber - Get the beginning of the scope of the
/// function, not necessarily where the name of the program
/// starts.
unsigned getScopeLineNumber() const { return getUnsignedField(19); }
};
/// DIGlobalVariable - This is a wrapper for a global variable.