diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-07 02:43:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-07 02:43:09 +0000 |
commit | de9750def7c5ca6cb789f3bba7c913e237cdf849 (patch) | |
tree | a69ebe473059e5075986e261b62d04d77d763761 /tools | |
parent | 1b747167daf07a98f0ec33144b257c987c60e11d (diff) | |
download | external_llvm-de9750def7c5ca6cb789f3bba7c913e237cdf849.zip external_llvm-de9750def7c5ca6cb789f3bba7c913e237cdf849.tar.gz external_llvm-de9750def7c5ca6cb789f3bba7c913e237cdf849.tar.bz2 |
Bugpoint had appalingly bad grammar. Fix some of it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10308 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bugpoint/Miscompilation.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp index 1fb46a6..f9d5fdb 100644 --- a/tools/bugpoint/Miscompilation.cpp +++ b/tools/bugpoint/Miscompilation.cpp @@ -144,8 +144,10 @@ bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs, // Test to see if the function is misoptimized if we ONLY run it on the // functions listed in Funcs. if (!EmitBytecode) { - std::cout << "Checking to see if the program is misoptimized when these " - << "functions are run\nthrough the passes: "; + std::cout << "Checking to see if the program is misoptimized when " + << (Funcs.size()==1 ? "this function is" : "these functions are") + << " run through the pass" + << (BD.PassesToRun.size() == 1 ? "" : "es") << ": "; BD.PrintFunctionList(Funcs); std::cout << "\n"; } else { @@ -267,7 +269,7 @@ bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs, delete BD.Program; // Delete the hacked up program BD.Program = OldProgram; // Restore the original - std::cout << (Broken ? "nope.\n" : "yup.\n"); + std::cout << (Broken ? " nope.\n" : " yup.\n"); return Broken; } @@ -301,7 +303,9 @@ bool BugDriver::debugMiscompilation() { // Do the reduction... ReduceMiscompilingFunctions(*this).reduceList(MiscompiledFunctions); - std::cout << "\n*** The following functions are being miscompiled: "; + std::cout << "\n*** The following function" + << (MiscompiledFunctions.size() == 1 ? " is" : "s are") + << " being miscompiled: "; PrintFunctionList(MiscompiledFunctions); std::cout << "\n"; |