[llvm-commits] CVS: llvm/lib/Support/CommandLine.cpp FileUtilities.cpp Signals.cpp SystemUtils.cpp
Misha Brukman
brukman at cs.uiuc.edu
Tue Sep 16 10:33:01 PDT 2003
Changes in directory llvm/lib/Support:
CommandLine.cpp updated: 1.36 -> 1.37
FileUtilities.cpp updated: 1.6 -> 1.7
Signals.cpp updated: 1.7 -> 1.8
SystemUtils.cpp updated: 1.12 -> 1.13
---
Log message:
Fixed spelling & grammar.
---
Diffs of the changes:
Index: llvm/lib/Support/CommandLine.cpp
diff -u llvm/lib/Support/CommandLine.cpp:1.36 llvm/lib/Support/CommandLine.cpp:1.37
--- llvm/lib/Support/CommandLine.cpp:1.36 Fri Aug 15 16:05:57 2003
+++ llvm/lib/Support/CommandLine.cpp Tue Sep 16 10:31:46 2003
@@ -330,7 +330,7 @@
if (*ArgName == 0 && !DashDashFound) { // Is this the mythical "--"?
DashDashFound = true; // Yup, take note of that fact...
- continue; // Don't try to process it as an argument iself.
+ continue; // Don't try to process it as an argument itself.
}
const char *ArgNameEnd = ArgName;
Index: llvm/lib/Support/FileUtilities.cpp
diff -u llvm/lib/Support/FileUtilities.cpp:1.6 llvm/lib/Support/FileUtilities.cpp:1.7
--- llvm/lib/Support/FileUtilities.cpp:1.6 Tue Sep 2 16:09:28 2003
+++ llvm/lib/Support/FileUtilities.cpp Tue Sep 16 10:31:46 2003
@@ -85,7 +85,7 @@
exit(1);
}
- // We don't need to hold the temp file descriptor... we will trust that noone
+ // We don't need to hold the temp file descriptor... we will trust that no one
// will overwrite/delete the file while we are working on it...
close(TempFD);
std::string Result(FNBuffer);
Index: llvm/lib/Support/Signals.cpp
diff -u llvm/lib/Support/Signals.cpp:1.7 llvm/lib/Support/Signals.cpp:1.8
--- llvm/lib/Support/Signals.cpp:1.7 Fri Aug 1 14:16:29 2003
+++ llvm/lib/Support/Signals.cpp Tue Sep 16 10:31:46 2003
@@ -1,7 +1,7 @@
//===- Signals.cpp - Signal Handling support ------------------------------===//
//
// This file defines some helpful functions for dealing with the possibility of
-// unix signals occuring while your program is running.
+// Unix signals occuring while your program is running.
//
//===----------------------------------------------------------------------===//
Index: llvm/lib/Support/SystemUtils.cpp
diff -u llvm/lib/Support/SystemUtils.cpp:1.12 llvm/lib/Support/SystemUtils.cpp:1.13
--- llvm/lib/Support/SystemUtils.cpp:1.12 Thu Aug 7 16:34:25 2003
+++ llvm/lib/Support/SystemUtils.cpp Tue Sep 16 10:31:46 2003
@@ -103,7 +103,7 @@
/// RunProgramWithTimeout - This function executes the specified program, with
/// the specified null-terminated argument array, with the stdin/out/err fd's
-/// redirected, with a timeout specified on the commandline. This terminates
+/// redirected, with a timeout specified on the command line. This terminates
/// the calling program if there is an error executing the specified program.
/// It returns the return value of the program, or -1 if a timeout is detected.
///
More information about the llvm-commits
mailing list