diff options
Diffstat (limited to 'llvm/lib/IR/DebugInfo.cpp')
-rw-r--r-- | llvm/lib/IR/DebugInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/DebugInfo.cpp b/llvm/lib/IR/DebugInfo.cpp index e5a92ab15d9..42267081c95 100644 --- a/llvm/lib/IR/DebugInfo.cpp +++ b/llvm/lib/IR/DebugInfo.cpp @@ -725,7 +725,7 @@ void DICompositeType::addMember(DIDescriptor D) { /// Generate a reference to this DIType. Uses the type identifier instead /// of the actual MDNode if possible, to help type uniquing. -DIScopeRef DIScope::generateRef() { +DIScopeRef DIScope::getRef() const { if (!isCompositeType()) return DIScopeRef(*this); DICompositeType DTy(DbgNode); @@ -737,7 +737,7 @@ DIScopeRef DIScope::generateRef() { /// \brief Set the containing type. void DICompositeType::setContainingType(DICompositeType ContainingType) { TrackingVH<MDNode> N(*this); - N->replaceOperandWith(12, ContainingType.generateRef()); + N->replaceOperandWith(12, ContainingType.getRef()); DbgNode = N; } |