mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Add FIXMEs to use DIScopeRef instead of DIScope for LTO type uniqueing.
llvm-svn: 204019
This commit is contained in:
parent
0980916774
commit
845a646084
@ -605,6 +605,7 @@ class DIGlobalVariable : public DIDescriptor {
|
||||
public:
|
||||
explicit DIGlobalVariable(const MDNode *N = 0) : DIDescriptor(N) {}
|
||||
|
||||
// FIXME: use DIScopeRef for LTO type uniqueing.
|
||||
DIScope getContext() const { return getFieldAs<DIScope>(2); }
|
||||
StringRef getName() const { return getStringField(3); }
|
||||
StringRef getDisplayName() const { return getStringField(4); }
|
||||
@ -638,6 +639,7 @@ class DIVariable : public DIDescriptor {
|
||||
public:
|
||||
explicit DIVariable(const MDNode *N = 0) : DIDescriptor(N) {}
|
||||
|
||||
// FIXME: use DIScopeRef for LTO type uniqueing.
|
||||
DIScope getContext() const { return getFieldAs<DIScope>(1); }
|
||||
StringRef getName() const { return getStringField(2); }
|
||||
DIFile getFile() const { return getFieldAs<DIFile>(3); }
|
||||
|
Loading…
Reference in New Issue
Block a user