[llvm-commits] [llvm] r56613 - /llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
Dan Gohman
gohman at apple.com
Thu Sep 25 10:17:27 PDT 2008
Author: djg
Date: Thu Sep 25 12:17:27 2008
New Revision: 56613
URL: http://llvm.org/viewvc/llvm-project?rev=56613&view=rev
Log:
Don't forget the newline in debug output.
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp?rev=56613&r1=56612&r2=56613&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp Thu Sep 25 12:17:27 2008
@@ -729,7 +729,7 @@
for (Function::arg_iterator I = Fn.arg_begin(), E = Fn.arg_end();
I != E; ++I, ++j)
if (Fn.paramHasAttr(j, ParamAttr::ByVal)) {
- cerr << "FastISel skips entry block due to byval argument";
+ cerr << "FastISel skips entry block due to byval argument\n";
SuppressFastISel = true;
break;
}
More information about the llvm-commits
mailing list