commit | 468ba15fd77ae7106aa2aafcd5d986d9e9c310c4 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Thu Sep 25 17:17:27 2008 +0000 |
committer | Dan Gohman <gohman@apple.com> | Thu Sep 25 17:17:27 2008 +0000 |
tree | 69442f49f5f30799e0b81dedff7515987084b04e | |
parent | 78ae76d54c1a523366be7e1c3cde16287e94de5f [diff] |
Don't forget the newline in debug output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56613 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index cbb1762..3c8a657 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -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; }