diff options
author | Chris Lattner <sabre@nondot.org> | 2008-12-05 17:04:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-12-05 17:04:12 +0000 |
commit | 7f7c7366829f58d067fd6a02c0540a01908c5bc2 (patch) | |
tree | 642d832eec8698e036a8cc67a2342a6848dfa12a /lib/Transforms | |
parent | 72eeb94fe1d69cd05bdbbe86b2bc9fa25c963c22 (diff) | |
download | external_llvm-7f7c7366829f58d067fd6a02c0540a01908c5bc2.zip external_llvm-7f7c7366829f58d067fd6a02c0540a01908c5bc2.tar.gz external_llvm-7f7c7366829f58d067fd6a02c0540a01908c5bc2.tar.bz2 |
Fix test/Transforms/GVN/pre-load.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60594 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/GVN.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp index 8bb83e5..385de02 100644 --- a/lib/Transforms/Scalar/GVN.cpp +++ b/lib/Transforms/Scalar/GVN.cpp @@ -1135,7 +1135,7 @@ bool GVN::processNonLocalLoad(LoadInst *LI, // Okay, we can eliminate this load by inserting a reload in the predecessor // and using PHI construction to get the value in the other predecessors, do // it. - /*DEBUG*/(cerr << "GVN REMOVING PRE LOAD: " << *LI); + DEBUG(cerr << "GVN REMOVING PRE LOAD: " << *LI); Value *NewLoad = new LoadInst(LoadPtr, LI->getName()+".pre", false, LI->getAlignment(), |