diff options
author | Manman Ren <manman.ren@gmail.com> | 2013-09-09 23:07:58 +0000 |
---|---|---|
committer | Manman Ren <manman.ren@gmail.com> | 2013-09-09 23:07:58 +0000 |
commit | 15b2abf2293a2060f97338e3f88b84fc83f76a17 (patch) | |
tree | 9ecb55342eb84253379cb262333cf80cab859374 /llvm/lib/IR/DIBuilder.cpp | |
parent | de897a369a8f4f2626c39db4b7f8dc3736a3bf09 (diff) | |
download | bcm5719-llvm-15b2abf2293a2060f97338e3f88b84fc83f76a17.tar.gz bcm5719-llvm-15b2abf2293a2060f97338e3f88b84fc83f76a17.zip |
Debug Info: In DIBuilder, the context fields of a TAG_inheritance and a
TAG_friend are updated to use scope reference.
Added testing cases to verify that class with inheritance can be uniqued.
llvm-svn: 190364
Diffstat (limited to 'llvm/lib/IR/DIBuilder.cpp')
-rw-r--r-- | llvm/lib/IR/DIBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/DIBuilder.cpp b/llvm/lib/IR/DIBuilder.cpp index 9439305857c..812bfdfb60e 100644 --- a/llvm/lib/IR/DIBuilder.cpp +++ b/llvm/lib/IR/DIBuilder.cpp @@ -375,7 +375,7 @@ DIDerivedType DIBuilder::createFriend(DIType Ty, DIType FriendTy) { Value *Elts[] = { GetTagConstant(VMContext, dwarf::DW_TAG_friend), NULL, - Ty, + Ty.generateRef(), NULL, // Name ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Size @@ -396,7 +396,7 @@ DIDerivedType DIBuilder::createInheritance( Value *Elts[] = { GetTagConstant(VMContext, dwarf::DW_TAG_inheritance), NULL, - Ty, + Ty.generateRef(), NULL, // Name ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Size |