[llvm-commits] CVS: llvm/tools/gccas/gccas.cpp

Reid Spencer reid at x10sys.com
Sun Nov 14 14:15:22 PST 2004



Changes in directory llvm/tools/gccas:

gccas.cpp updated: 1.102 -> 1.103
---
Log message:

Fix usage of changed function prototype

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

Index: llvm/tools/gccas/gccas.cpp
diff -u llvm/tools/gccas/gccas.cpp:1.102 llvm/tools/gccas/gccas.cpp:1.103
--- llvm/tools/gccas/gccas.cpp:1.102	Mon Nov  8 11:37:04 2004
+++ llvm/tools/gccas/gccas.cpp	Sun Nov 14 16:14:45 2004
@@ -159,7 +159,7 @@
 
     // Make sure that the Out file gets unlinked from the disk if we get a
     // signal
-    sys::RemoveFileOnSignal(OutputFilename);
+    sys::RemoveFileOnSignal(sys::Path(OutputFilename));
   }
 
   






More information about the llvm-commits mailing list