[llvm] r230265 - add newline for easier reading; NFC
Sanjay Patel
spatel at rotateright.com
Mon Feb 23 13:32:10 PST 2015
Author: spatel
Date: Mon Feb 23 15:32:09 2015
New Revision: 230265
URL: http://llvm.org/viewvc/llvm-project?rev=230265&view=rev
Log:
add newline for easier reading; NFC
Modified:
llvm/trunk/lib/Transforms/Scalar/BDCE.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/BDCE.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/BDCE.cpp?rev=230265&r1=230264&r2=230265&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/BDCE.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/BDCE.cpp Mon Feb 23 15:32:09 2015
@@ -277,7 +277,7 @@ bool BDCE::runOnFunction(Function& F) {
if (!isAlwaysLive(&I))
continue;
- DEBUG(dbgs() << "BDCE: Root: " << I);
+ DEBUG(dbgs() << "BDCE: Root: " << I << "\n");
// For integer-valued instructions, set up an initial empty set of alive
// bits and add the instruction to the work list. For other instructions
// add their operands to the work list (for integer values operands, mark
More information about the llvm-commits
mailing list