[llvm-commits] CVS: llvm/tools/llc/llc.cpp
Reid Spencer
reid at x10sys.com
Sun Nov 14 14:19:13 PST 2004
Changes in directory llvm/tools/llc:
llc.cpp updated: 1.102 -> 1.103
---
Log message:
Fix usage of changed function prototype
---
Diffs of the changes: (+2 -2)
Index: llvm/tools/llc/llc.cpp
diff -u llvm/tools/llc/llc.cpp:1.102 llvm/tools/llc/llc.cpp:1.103
--- llvm/tools/llc/llc.cpp:1.102 Wed Sep 1 17:55:37 2004
+++ llvm/tools/llc/llc.cpp Sun Nov 14 16:18:35 2004
@@ -115,7 +115,7 @@
// Make sure that the Out file gets unlinked from the disk if we get a
// SIGINT
- sys::RemoveFileOnSignal(OutputFilename);
+ sys::RemoveFileOnSignal(sys::Path(OutputFilename));
} else {
Out = &std::cout;
}
@@ -148,7 +148,7 @@
// Make sure that the Out file gets unlinked from the disk if we get a
// SIGINT
- sys::RemoveFileOnSignal(OutputFilename);
+ sys::RemoveFileOnSignal(sys::Path(OutputFilename));
}
}
More information about the llvm-commits
mailing list