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 | c100828026b475efea2c92e8a41b3727027290c0 (patch) | |
tree | e65d5e221c9231b0240de42177573cedace95b6f /llvm/lib | |
parent | 6d6da255fb89268fdf8c215a61b864f732bf2344 (diff) | |
download | bcm5719-llvm-c100828026b475efea2c92e8a41b3727027290c0.tar.gz bcm5719-llvm-c100828026b475efea2c92e8a41b3727027290c0.zip |
Fix test/Transforms/GVN/pre-load.ll
llvm-svn: 60594
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Scalar/GVN.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/GVN.cpp b/llvm/lib/Transforms/Scalar/GVN.cpp index 8bb83e53fb9..385de02322f 100644 --- a/llvm/lib/Transforms/Scalar/GVN.cpp +++ b/llvm/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(), |