diff options
author | Dan Gohman <gohman@apple.com> | 2008-03-25 21:38:12 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-03-25 21:38:12 +0000 |
commit | a7ba51f6ecb26372e38a4552f16bb634375fecad (patch) | |
tree | 8e3b6e5e477673def900a183b7592fdb029b2b23 /llvm/lib/CodeGen | |
parent | 72cfe84f058affda3f69d9e9b9debf245747c633 (diff) | |
download | bcm5719-llvm-a7ba51f6ecb26372e38a4552f16bb634375fecad.tar.gz bcm5719-llvm-a7ba51f6ecb26372e38a4552f16bb634375fecad.zip |
Avoid outputing spaces at the ends of lines.
llvm-svn: 48797
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/LLVMTargetMachine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/LLVMTargetMachine.cpp b/llvm/lib/CodeGen/LLVMTargetMachine.cpp index 04c59107f8c..bae7140bfb1 100644 --- a/llvm/lib/CodeGen/LLVMTargetMachine.cpp +++ b/llvm/lib/CodeGen/LLVMTargetMachine.cpp @@ -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. |