mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
Avoid outputing spaces at the ends of lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48797 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
73ee9c3fb1
commit
62c7b8c371
@ -61,7 +61,7 @@ LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
|
||||
if (!Fast) {
|
||||
PM.add(createLoopStrengthReducePass(getTargetLowering()));
|
||||
if (PrintLSR)
|
||||
PM.add(new PrintFunctionPass("\n\n*** Code after LSR *** \n", &cerr));
|
||||
PM.add(new PrintFunctionPass("\n\n*** Code after LSR ***\n", &cerr));
|
||||
}
|
||||
|
||||
PM.add(createGCLoweringPass());
|
||||
@ -76,7 +76,7 @@ LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
|
||||
PM.add(createCodeGenPreparePass(getTargetLowering()));
|
||||
|
||||
if (PrintISelInput)
|
||||
PM.add(new PrintFunctionPass("\n\n*** Final LLVM Code input to ISel *** \n",
|
||||
PM.add(new PrintFunctionPass("\n\n*** Final LLVM Code input to ISel ***\n",
|
||||
&cerr));
|
||||
|
||||
// Ask the target for an isel.
|
||||
@ -187,7 +187,7 @@ bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase &PM,
|
||||
if (!Fast) {
|
||||
PM.add(createLoopStrengthReducePass(getTargetLowering()));
|
||||
if (PrintLSR)
|
||||
PM.add(new PrintFunctionPass("\n\n*** Code after LSR *** \n", &cerr));
|
||||
PM.add(new PrintFunctionPass("\n\n*** Code after LSR ***\n", &cerr));
|
||||
}
|
||||
|
||||
PM.add(createGCLoweringPass());
|
||||
@ -202,7 +202,7 @@ bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase &PM,
|
||||
PM.add(createCodeGenPreparePass(getTargetLowering()));
|
||||
|
||||
if (PrintISelInput)
|
||||
PM.add(new PrintFunctionPass("\n\n*** Final LLVM Code input to ISel *** \n",
|
||||
PM.add(new PrintFunctionPass("\n\n*** Final LLVM Code input to ISel ***\n",
|
||||
&cerr));
|
||||
|
||||
// Ask the target for an isel.
|
||||
|
Loading…
x
Reference in New Issue
Block a user