Move the DIFile in DISubprogram to the beginning to be a common prefix along with other DIScopes

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177674 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Blaikie
2013-03-21 22:29:36 +00:00
parent b0b5bde018
commit ced228dec3
28 changed files with 101 additions and 101 deletions

View File

@@ -410,10 +410,10 @@ namespace llvm {
public:
explicit DISubprogram(const MDNode *N = 0) : DIScope(N) {}
DIScope getContext() const { return getFieldAs<DIScope>(1); }
StringRef getName() const { return getStringField(2); }
StringRef getDisplayName() const { return getStringField(3); }
StringRef getLinkageName() const { return getStringField(4); }
DIScope getContext() const { return getFieldAs<DIScope>(2); }
StringRef getName() const { return getStringField(3); }
StringRef getDisplayName() const { return getStringField(4); }
StringRef getLinkageName() const { return getStringField(5); }
unsigned getLineNumber() const { return getUnsignedField(6); }
DICompositeType getType() const { return getFieldAs<DICompositeType>(7); }
@@ -471,11 +471,11 @@ namespace llvm {
unsigned isOptimized() const;
StringRef getFilename() const {
return getFieldAs<DIFile>(5).getFilename();
return getFieldAs<DIFile>(1).getFilename();
}
StringRef getDirectory() const {
return getFieldAs<DIFile>(5).getDirectory();
return getFieldAs<DIFile>(1).getDirectory();
}
/// getScopeLineNumber - Get the beginning of the scope of the