mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 06:25:18 +00:00
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:
@@ -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
|
||||
|
Reference in New Issue
Block a user