[llvm-commits] CVS: llvm/utils/TableGen/TableGen.cpp

Reid Spencer reid at x10sys.com
Sun Nov 14 14:31:32 PST 2004



Changes in directory llvm/utils/TableGen:

TableGen.cpp updated: 1.35 -> 1.36
---
Log message:

Fix usage of changed function prototype

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

Index: llvm/utils/TableGen/TableGen.cpp
diff -u llvm/utils/TableGen/TableGen.cpp:1.35 llvm/utils/TableGen/TableGen.cpp:1.36
--- llvm/utils/TableGen/TableGen.cpp:1.35	Fri Sep  3 18:17:54 2004
+++ llvm/utils/TableGen/TableGen.cpp	Sun Nov 14 16:30:54 2004
@@ -426,7 +426,7 @@
     }
 
     // Make sure the file gets removed if *gasp* tablegen crashes...
-    sys::RemoveFileOnSignal(OutputFilename);
+    sys::RemoveFileOnSignal(sys::Path(OutputFilename));
   }
 
   try {






More information about the llvm-commits mailing list