[llvm-commits] CVS: reopt/tools/reopt-llc/Makefile reopt-llc.cpp

Tanya Brethour tbrethou at cs.uiuc.edu
Thu Nov 18 12:39:08 PST 2004



Changes in directory reopt/tools/reopt-llc:

Makefile updated: 1.4 -> 1.5
reopt-llc.cpp updated: 1.2 -> 1.3
---
Log message:

Fixed some changes to function calls and added ModuloSched to the Makefile.


---
Diffs of the changes:  (+4 -2)

Index: reopt/tools/reopt-llc/Makefile
diff -u reopt/tools/reopt-llc/Makefile:1.4 reopt/tools/reopt-llc/Makefile:1.5
--- reopt/tools/reopt-llc/Makefile:1.4	Thu Oct 28 12:10:44 2004
+++ reopt/tools/reopt-llc/Makefile	Thu Nov 18 14:38:55 2004
@@ -2,6 +2,7 @@
 TOOLNAME = reopt-llc
 #	LLVMCBackend 
 LLVMLIBS = \
+ 	LLVMSparcV9ModuloSched \
 	LLVMSparcV9 \
 	LLVMSparcV9RegAlloc \
 	LLVMSparcV9InstrSched \


Index: reopt/tools/reopt-llc/reopt-llc.cpp
diff -u reopt/tools/reopt-llc/reopt-llc.cpp:1.2 reopt/tools/reopt-llc/reopt-llc.cpp:1.3
--- reopt/tools/reopt-llc/reopt-llc.cpp:1.2	Thu Sep 30 15:37:17 2004
+++ reopt/tools/reopt-llc/reopt-llc.cpp	Thu Nov 18 14:38:56 2004
@@ -27,6 +27,7 @@
 #include "llvm/Transforms/Scalar.h"
 #include "llvm/Transforms/Instrumentation.h"
 #include "llvm/Support/PluginLoader.h"
+#include "llvm/System/Path.h"
 #include "llvm/System/Signals.h"
 #include <fstream>
 #include <iostream>
@@ -124,7 +125,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;
     }
@@ -157,7 +158,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