diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-05-07 06:08:28 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-05-07 06:08:28 +0000 |
commit | f248c16f5f70b519bae2667be39c0f5cb98bf1b5 (patch) | |
tree | d1e8662209f121c7553b49f11849c4ec5de6415a /llvm/lib/IR | |
parent | 924221cb375dd42836c695deb38212272664f5b4 (diff) | |
download | bcm5719-llvm-f248c16f5f70b519bae2667be39c0f5cb98bf1b5.tar.gz bcm5719-llvm-f248c16f5f70b519bae2667be39c0f5cb98bf1b5.zip |
PR19562: DebugInfo temporary MDNode leak: Don't include a temporary node to replace with a variable list for methods, since they're always declarations and thus never include variables
This field is used for a list of variables to ensure they are not lost
during optimization (they're only included when optimizations are
enabled).
llvm-svn: 208159
Diffstat (limited to 'llvm/lib/IR')
-rw-r--r-- | llvm/lib/IR/DIBuilder.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/IR/DIBuilder.cpp b/llvm/lib/IR/DIBuilder.cpp index 528b43cdc88..48edc9a9b54 100644 --- a/llvm/lib/IR/DIBuilder.cpp +++ b/llvm/lib/IR/DIBuilder.cpp @@ -1159,7 +1159,6 @@ DISubprogram DIBuilder::createMethod(DIDescriptor Context, StringRef Name, assert(getNonCompileUnitScope(Context) && "Methods should have both a Context and a context that isn't " "the compile unit."); - Value *TElts[] = { GetTagConstant(VMContext, DW_TAG_base_type) }; Value *Elts[] = { GetTagConstant(VMContext, dwarf::DW_TAG_subprogram), F.getFileNode(), @@ -1179,7 +1178,7 @@ DISubprogram DIBuilder::createMethod(DIDescriptor Context, StringRef Name, Fn, TParam, Constant::getNullValue(Type::getInt32Ty(VMContext)), - MDNode::getTemporary(VMContext, TElts), + nullptr, // FIXME: Do we want to use different scope/lines? ConstantInt::get(Type::getInt32Ty(VMContext), LineNo) }; |