[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.h Miscompilation.cpp OptimizerDriver.cpp
Jeff Cohen
jeffc at jolt-lang.org
Thu Apr 21 21:13:25 PDT 2005
Changes in directory llvm/tools/bugpoint:
BugDriver.h updated: 1.39 -> 1.40
Miscompilation.cpp updated: 1.63 -> 1.64
OptimizerDriver.cpp updated: 1.30 -> 1.31
---
Log message:
Eliminate tabs and trailing spaces
---
Diffs of the changes: (+5 -5)
BugDriver.h | 4 ++--
Miscompilation.cpp | 2 +-
OptimizerDriver.cpp | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
Index: llvm/tools/bugpoint/BugDriver.h
diff -u llvm/tools/bugpoint/BugDriver.h:1.39 llvm/tools/bugpoint/BugDriver.h:1.40
--- llvm/tools/bugpoint/BugDriver.h:1.39 Thu Apr 21 18:59:23 2005
+++ llvm/tools/bugpoint/BugDriver.h Thu Apr 21 23:13:13 2005
@@ -94,7 +94,7 @@
/// 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 @@
///
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.
Index: llvm/tools/bugpoint/Miscompilation.cpp
diff -u llvm/tools/bugpoint/Miscompilation.cpp:1.63 llvm/tools/bugpoint/Miscompilation.cpp:1.64
--- llvm/tools/bugpoint/Miscompilation.cpp:1.63 Thu Apr 21 18:59:23 2005
+++ llvm/tools/bugpoint/Miscompilation.cpp Thu Apr 21 23:13:13 2005
@@ -564,7 +564,7 @@
// 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;
}
Index: llvm/tools/bugpoint/OptimizerDriver.cpp
diff -u llvm/tools/bugpoint/OptimizerDriver.cpp:1.30 llvm/tools/bugpoint/OptimizerDriver.cpp:1.31
--- llvm/tools/bugpoint/OptimizerDriver.cpp:1.30 Thu Apr 21 18:59:23 2005
+++ llvm/tools/bugpoint/OptimizerDriver.cpp Thu Apr 21 23:13:13 2005
@@ -43,7 +43,7 @@
/// 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 @@
///
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();
More information about the llvm-commits
mailing list