diff options
author | Devang Patel <dpatel@apple.com> | 2011-06-03 17:04:51 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-06-03 17:04:51 +0000 |
commit | 1d40024322d9e3eb903a9bded4d0c1c87f6cc026 (patch) | |
tree | a33b9e01bb76817689b9bb5be4fcea8ebb4b73d6 /llvm/lib/Analysis/DIBuilder.cpp | |
parent | 6a11b64c5ee4210bbb510a976eb7cf6f01a081fb (diff) | |
download | bcm5719-llvm-1d40024322d9e3eb903a9bded4d0c1c87f6cc026.tar.gz bcm5719-llvm-1d40024322d9e3eb903a9bded4d0c1c87f6cc026.zip |
A typedef's context is not the same as type's context. It is the context of typedef decl itself. Use extra parameter to communicate this to DIBuilder.
llvm-svn: 132556
Diffstat (limited to 'llvm/lib/Analysis/DIBuilder.cpp')
-rw-r--r-- | llvm/lib/Analysis/DIBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DIBuilder.cpp b/llvm/lib/Analysis/DIBuilder.cpp index 1375e497ac6..ef5d03a0713 100644 --- a/llvm/lib/Analysis/DIBuilder.cpp +++ b/llvm/lib/Analysis/DIBuilder.cpp @@ -160,12 +160,12 @@ DIType DIBuilder::createReferenceType(DIType RTy) { /// createTypedef - Create debugging information entry for a typedef. DIType DIBuilder::createTypedef(DIType Ty, StringRef Name, DIFile File, - unsigned LineNo) { + unsigned LineNo, DIDescriptor Context) { // typedefs are encoded in DIDerivedType format. assert(Ty.Verify() && "Invalid typedef type!"); Value *Elts[] = { GetTagConstant(VMContext, dwarf::DW_TAG_typedef), - Ty.getContext(), + Context, MDString::get(VMContext, Name), File, ConstantInt::get(Type::getInt32Ty(VMContext), LineNo), |