Don't forget the newline in debug output.

llvm-svn: 56613
This commit is contained in:
Dan Gohman 2008-09-25 17:17:27 +00:00
parent c6c4f239d6
commit dd920bf3f0

View File

@ -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;
}