diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 03:57:49 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 03:57:49 +0000 |
commit | 5a7f13b2ae556dcc99f1fb44bb4af86a06ed14e3 (patch) | |
tree | b2a3679691ec221f01126dbca498d4c9030e9702 /tools/llvmc | |
parent | 2967b61b68cfd9590728acd88ded2d2545874600 (diff) | |
download | external_llvm-5a7f13b2ae556dcc99f1fb44bb4af86a06ed14e3.zip external_llvm-5a7f13b2ae556dcc99f1fb44bb4af86a06ed14e3.tar.gz external_llvm-5a7f13b2ae556dcc99f1fb44bb4af86a06ed14e3.tar.bz2 |
Pass -f to stkrc to ensure the output file is always written.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17295 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc')
-rw-r--r-- | tools/llvmc/st | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/llvmc/st b/tools/llvmc/st index 67e9d79..87b4769 100644 --- a/tools/llvmc/st +++ b/tools/llvmc/st @@ -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 |