[llvm-commits] CVS: llvm/tools/gccas/gccas.cpp
Reid Spencer
reid at x10sys.com
Sun Aug 29 12:29:07 PDT 2004
Changes in directory llvm/tools/gccas:
gccas.cpp updated: 1.98 -> 1.99
---
Log message:
The functions in Signal.h are now in the llvm::sys namespace - adjust
---
Diffs of the changes: (+2 -2)
Index: llvm/tools/gccas/gccas.cpp
diff -u llvm/tools/gccas/gccas.cpp:1.98 llvm/tools/gccas/gccas.cpp:1.99
--- llvm/tools/gccas/gccas.cpp:1.98 Thu Jul 22 03:34:33 2004
+++ llvm/tools/gccas/gccas.cpp Sun Aug 29 14:28:55 2004
@@ -117,7 +117,7 @@
int main(int argc, char **argv) {
cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
- PrintStackTraceOnErrorSignal();
+ sys::PrintStackTraceOnErrorSignal();
std::auto_ptr<Module> M;
try {
@@ -156,7 +156,7 @@
// Make sure that the Out file gets unlinked from the disk if we get a
// signal
- RemoveFileOnSignal(OutputFilename);
+ sys::RemoveFileOnSignal(OutputFilename);
}
More information about the llvm-commits
mailing list