[llvm-commits] CVS: llvm/tools/llvmc/st

Reid Spencer reid at x10sys.com
Wed Oct 27 20:57:59 PDT 2004



Changes in directory llvm/tools/llvmc:

st updated: 1.7 -> 1.8
---
Log message:

Pass -f to stkrc to ensure the output file is always written.


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

Index: llvm/tools/llvmc/st
diff -u llvm/tools/llvmc/st:1.7 llvm/tools/llvmc/st:1.8
--- llvm/tools/llvmc/st:1.7	Mon Sep 13 21:00:24 2004
+++ llvm/tools/llvmc/st	Wed Oct 27 22:57:49 2004
@@ -25,8 +25,8 @@
 
   # To compile stacker source, we just run the stacker
   # compiler with a default stack size of 2048 entries.
-  translator.command=stkrc -s 2048 %in% -o %out% %opt% \
-    %time% %stats% %force% %args%
+  translator.command=stkrc -s 2048 %in% -f -o %out% %opt% \
+    %time% %stats% %args%
 
   # stkrc doesn't preprocess but we set this to true so
   # that we don't run the cp command by default.
@@ -43,8 +43,8 @@
 ##########################################################
   
   # For optimization, we use the LLVM "opt" program
-  optimizer.command=stkrc -s 2048 %in% -o %out% %opt% \
-    %time% %stats% %force% %args%
+  optimizer.command=stkrc -s 2048 %in% -f -o %out% %opt% \
+    %time% %stats% %args%
 
   optimizer.required = yes
 






More information about the llvm-commits mailing list