diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-18 00:05:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-18 00:05:05 +0000 |
commit | 9f71e799c3e6e4cc0c71de82bda81f8753e82942 (patch) | |
tree | 5dcc37f2f606b0c59c877f0cc515e1d42bda4780 /tools | |
parent | 5ef681c19de9c675a265211f8fb0ae49cc3a3a66 (diff) | |
download | external_llvm-9f71e799c3e6e4cc0c71de82bda81f8753e82942.zip external_llvm-9f71e799c3e6e4cc0c71de82bda81f8753e82942.tar.gz external_llvm-9f71e799c3e6e4cc0c71de82bda81f8753e82942.tar.bz2 |
Another formatting fix
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9216 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bugpoint/Miscompilation.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp index 95fd7d6..f21ae16 100644 --- a/tools/bugpoint/Miscompilation.cpp +++ b/tools/bugpoint/Miscompilation.cpp @@ -31,7 +31,7 @@ ReduceMiscompilingPasses::doTest(std::vector<const PassInfo*> &Prefix, std::string BytecodeResult; if (BD.runPasses(Suffix, BytecodeResult, false/*delete*/, true/*quiet*/)) { - std::cerr << ": Error running this sequence of passes" + std::cerr << " Error running this sequence of passes" << " on the input program!\n"; BD.setPassesToRun(Suffix); BD.EmitProgressBytecode("pass-error", false); @@ -59,7 +59,7 @@ ReduceMiscompilingPasses::doTest(std::vector<const PassInfo*> &Prefix, // prefix passes, then discard the prefix passes. // if (BD.runPasses(Prefix, BytecodeResult, false/*delete*/, true/*quiet*/)) { - std::cerr << ": Error running this sequence of passes" + std::cerr << " Error running this sequence of passes" << " on the input program!\n"; BD.setPassesToRun(Prefix); BD.EmitProgressBytecode("pass-error", false); @@ -92,7 +92,7 @@ ReduceMiscompilingPasses::doTest(std::vector<const PassInfo*> &Prefix, Module *OriginalInput = BD.Program; BD.Program = PrefixOutput; if (BD.runPasses(Suffix, BytecodeResult, false/*delete*/, true/*quiet*/)) { - std::cerr << ": Error running this sequence of passes" + std::cerr << " Error running this sequence of passes" << " on the input program!\n"; BD.setPassesToRun(Suffix); BD.EmitProgressBytecode("pass-error", false); @@ -207,7 +207,7 @@ bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs, std::string BytecodeResult; if (BD.runPasses(BD.PassesToRun, BytecodeResult, false/*delete*/, true/*quiet*/)) { - std::cerr << ": Error running this sequence of passes" + std::cerr << " Error running this sequence of passes" << " on the input program!\n"; BD.setPassesToRun(Suffix); BD.EmitProgressBytecode("pass-error", false); |