summaryrefslogtreecommitdiff
path: root/lib/Transforms/Instrumentation/DebugIR.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-07-18 19:13:06 +0000
committerEric Christopher <echristo@gmail.com>2013-07-18 19:13:06 +0000
commit7c05da187c9fd7ac83b97ecbe207b88a711667da (patch)
tree1e1f89a5302510615c0a8dc6d02836f369786789 /lib/Transforms/Instrumentation/DebugIR.cpp
parent960d6d909b61c5766dfccbe12c060550d6dd8e54 (diff)
downloadllvm-7c05da187c9fd7ac83b97ecbe207b88a711667da.tar.gz
llvm-7c05da187c9fd7ac83b97ecbe207b88a711667da.tar.bz2
llvm-7c05da187c9fd7ac83b97ecbe207b88a711667da.tar.xz
Revert "Remove DIBuilder cache of variable TheCU and change the few"
This reverts commit r186599 as I didn't want to commit this yet. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186601 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation/DebugIR.cpp')
-rw-r--r--lib/Transforms/Instrumentation/DebugIR.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/Instrumentation/DebugIR.cpp b/lib/Transforms/Instrumentation/DebugIR.cpp
index 651381d88b..cea19e6510 100644
--- a/lib/Transforms/Instrumentation/DebugIR.cpp
+++ b/lib/Transforms/Instrumentation/DebugIR.cpp
@@ -289,9 +289,9 @@ private:
"LLVM Version " STR(LLVM_VERSION_MAJOR) "." STR(LLVM_VERSION_MINOR);
}
- CUNode =
- Builder.createCompileUnit(dwarf::DW_LANG_C99, Filename, Directory,
- Producer, IsOptimized, Flags, RuntimeVersion);
+ Builder.createCompileUnit(dwarf::DW_LANG_C99, Filename, Directory, Producer,
+ IsOptimized, Flags, RuntimeVersion);
+ CUNode = Builder.getCU();
if (CUToReplace)
CUToReplace->replaceAllUsesWith(const_cast<MDNode *>(CUNode));