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 | ffe5f97f1778daa9618a6eca7b13b094a4f8a4c4 (patch) | |
| tree | 9ecaf5119bba805047fad0ffdc3ef3308cb035b8 /llvm/tools/llvmc | |
| parent | 1002e454cbb48e572572842736a754d4094d9541 (diff) | |
| download | bcm5719-llvm-ffe5f97f1778daa9618a6eca7b13b094a4f8a4c4.tar.gz bcm5719-llvm-ffe5f97f1778daa9618a6eca7b13b094a4f8a4c4.zip | |
Pass -f to stkrc to ensure the output file is always written.
llvm-svn: 17295
Diffstat (limited to 'llvm/tools/llvmc')
| -rw-r--r-- | llvm/tools/llvmc/st | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/tools/llvmc/st b/llvm/tools/llvmc/st index 67e9d7958bc..87b476991d9 100644 --- a/llvm/tools/llvmc/st +++ b/llvm/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 |

