[llvm-commits] CVS: llvm/tools/bugpoint/CrashDebugger.cpp OptimizerDriver.cpp

Misha Brukman brukman at cs.uiuc.edu
Fri Oct 10 12:56:00 PDT 2003


Changes in directory llvm/tools/bugpoint:

CrashDebugger.cpp updated: 1.18 -> 1.19
OptimizerDriver.cpp updated: 1.11 -> 1.12

---
Log message:

Fix spelling.


---
Diffs of the changes:  (+5 -5)

Index: llvm/tools/bugpoint/CrashDebugger.cpp
diff -u llvm/tools/bugpoint/CrashDebugger.cpp:1.18 llvm/tools/bugpoint/CrashDebugger.cpp:1.19
--- llvm/tools/bugpoint/CrashDebugger.cpp:1.18	Mon Aug 18 09:38:08 2003
+++ llvm/tools/bugpoint/CrashDebugger.cpp	Fri Oct 10 12:55:03 2003
@@ -91,7 +91,7 @@
 };
 
 bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
-  // Clone the program to try hacking it appart...
+  // Clone the program to try hacking it apart...
   Module *M = CloneModule(BD.Program);
   
   // Convert list to set for fast lookup...
@@ -153,7 +153,7 @@
 };
 
 bool ReduceCrashingBlocks::TestBlocks(std::vector<BasicBlock*> &BBs) {
-  // Clone the program to try hacking it appart...
+  // Clone the program to try hacking it apart...
   Module *M = CloneModule(BD.Program);
   
   // Convert list to set for fast lookup...


Index: llvm/tools/bugpoint/OptimizerDriver.cpp
diff -u llvm/tools/bugpoint/OptimizerDriver.cpp:1.11 llvm/tools/bugpoint/OptimizerDriver.cpp:1.12
--- llvm/tools/bugpoint/OptimizerDriver.cpp:1.11	Thu Aug  7 16:42:28 2003
+++ llvm/tools/bugpoint/OptimizerDriver.cpp	Fri Oct 10 12:55:03 2003
@@ -1,8 +1,8 @@
 //===- OptimizerDriver.cpp - Allow BugPoint to run passes safely ----------===//
 //
 // This file defines an interface that allows bugpoint to run various passes
-// without the threat of a buggy pass corrupting bugpoint (of course bugpoint
-// may have it's own bugs, but that's another story...).  It acheives this by
+// without the threat of a buggy pass corrupting bugpoint (of course, bugpoint
+// may have its own bugs, but that's another story...).  It achieves this by
 // forking a copy of itself and having the child process do the optimizations.
 // If this client dies, we can always fork a new one.  :)
 //
@@ -95,7 +95,7 @@
 }
 
 /// runPasses - Run the specified passes on Program, outputting a bytecode file
-/// and writting the filename into OutputFile if successful.  If the
+/// and writing the filename into OutputFile if successful.  If the
 /// optimizations fail for some reason (optimizer crashes), return true,
 /// otherwise return false.  If DeleteOutput is set to true, the bytecode is
 /// deleted on success, and the filename string is undefined.  This prints to





More information about the llvm-commits mailing list