diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-04-22 04:13:13 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-04-22 04:13:13 +0000 |
commit | 88e7b7288ae9cb23dc85341a520062e7903ba479 (patch) | |
tree | df98b71efed67e449ae4bccbe6740baf74b47c75 /llvm/tools | |
parent | 5191b4b2d02f2f3c2d3f496e0b822ebab84e0781 (diff) | |
download | bcm5719-llvm-88e7b7288ae9cb23dc85341a520062e7903ba479.tar.gz bcm5719-llvm-88e7b7288ae9cb23dc85341a520062e7903ba479.zip |
Eliminate tabs and trailing spaces
llvm-svn: 21441
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/bugpoint/BugDriver.h | 4 | ||||
-rw-r--r-- | llvm/tools/bugpoint/Miscompilation.cpp | 2 | ||||
-rw-r--r-- | llvm/tools/bugpoint/OptimizerDriver.cpp | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/llvm/tools/bugpoint/BugDriver.h b/llvm/tools/bugpoint/BugDriver.h index e610c67f703..51798d29a56 100644 --- a/llvm/tools/bugpoint/BugDriver.h +++ b/llvm/tools/bugpoint/BugDriver.h @@ -94,7 +94,7 @@ public: /// are to match. /// bool debugPassMiscompilation(const PassInfo *ThePass, - const std::string &ReferenceOutput); + const std::string &ReferenceOutput); /// compileSharedObject - This method creates a SharedObject from a given /// BytecodeFile for debugging a code generator. @@ -227,7 +227,7 @@ public: /// bool runPasses(const std::vector<const PassInfo*> &PassesToRun, std::string &OutputFilename, bool DeleteOutput = false, - bool Quiet = false) const; + bool Quiet = false) const; /// writeProgramToFile - This writes the current "Program" to the named /// bytecode file. If an error occurs, true is returned. diff --git a/llvm/tools/bugpoint/Miscompilation.cpp b/llvm/tools/bugpoint/Miscompilation.cpp index c7f954df3cc..4d28ff8a993 100644 --- a/llvm/tools/bugpoint/Miscompilation.cpp +++ b/llvm/tools/bugpoint/Miscompilation.cpp @@ -564,7 +564,7 @@ bool BugDriver::debugMiscompilation() { // Make sure something was miscompiled... if (!ReduceMiscompilingPasses(*this).reduceList(PassesToRun)) { std::cerr << "*** Optimized program matches reference output! No problem " - << "detected...\nbugpoint can't help you with your problem!\n"; + << "detected...\nbugpoint can't help you with your problem!\n"; return false; } diff --git a/llvm/tools/bugpoint/OptimizerDriver.cpp b/llvm/tools/bugpoint/OptimizerDriver.cpp index 7feccab6bad..5de70be2916 100644 --- a/llvm/tools/bugpoint/OptimizerDriver.cpp +++ b/llvm/tools/bugpoint/OptimizerDriver.cpp @@ -43,7 +43,7 @@ using namespace llvm; /// file. If an error occurs, true is returned. /// bool BugDriver::writeProgramToFile(const std::string &Filename, - Module *M) const { + Module *M) const { std::ios::openmode io_mode = std::ios::out | std::ios::trunc | std::ios::binary; std::ofstream Out(Filename.c_str(), io_mode); @@ -127,7 +127,7 @@ static void RunChild(Module *Program,const std::vector<const PassInfo*> &Passes, /// bool BugDriver::runPasses(const std::vector<const PassInfo*> &Passes, std::string &OutputFilename, bool DeleteOutput, - bool Quiet) const{ + bool Quiet) const{ std::cout << std::flush; sys::Path uniqueFilename("bugpoint-output.bc"); uniqueFilename.makeUnique(); |