aboutsummaryrefslogtreecommitdiffstats
path: root/tools/bugpoint/Miscompilation.cpp
diff options
context:
space:
mode:
authorDavid Goodwin <david_goodwin@apple.com>2009-07-10 21:39:28 +0000
committerDavid Goodwin <david_goodwin@apple.com>2009-07-10 21:39:28 +0000
commitec1edba663483b0f2381e44b8c69a1284d471156 (patch)
treea4a2cbeb546cd20cc9e564fdd50310bd99b29f6d /tools/bugpoint/Miscompilation.cpp
parent50e9111ac3137f09b9b8cc492d7d57b5927aa5e9 (diff)
downloadexternal_llvm-ec1edba663483b0f2381e44b8c69a1284d471156.zip
external_llvm-ec1edba663483b0f2381e44b8c69a1284d471156.tar.gz
external_llvm-ec1edba663483b0f2381e44b8c69a1284d471156.tar.bz2
Support remote execute for ARM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75292 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/Miscompilation.cpp')
-rw-r--r--tools/bugpoint/Miscompilation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp
index 21e1412..785abb9 100644
--- a/tools/bugpoint/Miscompilation.cpp
+++ b/tools/bugpoint/Miscompilation.cpp
@@ -57,7 +57,7 @@ ReduceMiscompilingPasses::doTest(std::vector<const PassInfo*> &Prefix,
// First, run the program with just the Suffix passes. If it is still broken
// with JUST the kept passes, discard the prefix passes.
std::cout << "Checking to see if '" << getPassesString(Suffix)
- << "' compile correctly: ";
+ << "' compiles correctly: ";
std::string BitcodeResult;
if (BD.runPasses(Suffix, BitcodeResult, false/*delete*/, true/*quiet*/)) {
@@ -85,7 +85,7 @@ ReduceMiscompilingPasses::doTest(std::vector<const PassInfo*> &Prefix,
// Next, see if the program is broken if we run the "prefix" passes first,
// then separately run the "kept" passes.
std::cout << "Checking to see if '" << getPassesString(Prefix)
- << "' compile correctly: ";
+ << "' compiles correctly: ";
// If it is not broken with the kept passes, it's possible that the prefix
// passes must be run before the kept passes to break it. If the program