Pass -f to stkrc to ensure the output file is always written.
authorReid Spencer <rspencer@reidspencer.com>
Thu, 28 Oct 2004 03:57:49 +0000 (03:57 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 28 Oct 2004 03:57:49 +0000 (03:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17295 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvmc/st

index 67e9d7958bc4eeadfc1d131a85938d661641a41a..87b476991d932dfcd8042050d5645ee7971908be 100644 (file)
@@ -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