[llvm-commits] CVS: llvm/tools/opt/opt.cpp
Reid Spencer
reid at x10sys.com
Sun Nov 14 14:30:46 PST 2004
Changes in directory llvm/tools/opt:
opt.cpp updated: 1.98 -> 1.99
---
Log message:
Fix usage of changed function prototype
---
Diffs of the changes: (+1 -1)
Index: llvm/tools/opt/opt.cpp
diff -u llvm/tools/opt/opt.cpp:1.98 llvm/tools/opt/opt.cpp:1.99
--- llvm/tools/opt/opt.cpp:1.98 Fri Oct 15 18:22:48 2004
+++ llvm/tools/opt/opt.cpp Sun Nov 14 16:30:08 2004
@@ -111,7 +111,7 @@
// Make sure that the Output file gets unlinked from the disk if we get a
// SIGINT
- sys::RemoveFileOnSignal(OutputFilename);
+ sys::RemoveFileOnSignal(sys::Path(OutputFilename));
}
// If the output is set to be emitted to standard out, and standard out is a
More information about the llvm-commits
mailing list