diff options
author | Dan Gohman <gohman@apple.com> | 2008-09-25 17:17:27 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-09-25 17:17:27 +0000 |
commit | dd920bf3f00ed12b9cc90c46e74f360968045a8f (patch) | |
tree | ba4e387f0f0e88510ebc9fc385d68f694e0061eb /llvm/lib/CodeGen | |
parent | c6c4f239d6921cf5836c670a45be713d4f0b5caa (diff) | |
download | bcm5719-llvm-dd920bf3f00ed12b9cc90c46e74f360968045a8f.tar.gz bcm5719-llvm-dd920bf3f00ed12b9cc90c46e74f360968045a8f.zip |
Don't forget the newline in debug output.
llvm-svn: 56613
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index cbb1762e26b..3c8a6575297 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -729,7 +729,7 @@ void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn, MachineFunction &MF, 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; } |