Don't forget the newline in debug output.
llvm-svn: 56613
This commit is contained in:
parent
c6c4f239d6
commit
dd920bf3f0
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue