diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-22 18:01:19 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-22 18:01:19 +0000 |
commit | b50acbcf49bae421a0dfdab9849d5027c9838bab (patch) | |
tree | e021286b4209672ff892cfac2541147440744f29 | |
parent | 0e5e5f56bde3556aa231bf19f7fc9b62c31a2fcc (diff) |
Shorten lines so this file can be used as the documentation example
directly. Remove -pre (experimental pass).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15992 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvmc/st | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/tools/llvmc/st b/tools/llvmc/st index 7c8d1ab8b1..e9a72ef5da 100644 --- a/tools/llvmc/st +++ b/tools/llvmc/st @@ -5,14 +5,18 @@ ########################################################## lang.name=Stacker lang.opt1=-simplifycfg -instcombine -mem2reg - lang.opt2=-simplifycfg -instcombine -mem2reg -load-vn -gcse -dse -scalarrepl -sccp - lang.opt3=-simplifycfg -instcombine -mem2reg -load-vn -gcse -dse -scalarrepl -sccp \ - -branch-combine -adce -globaldce -inline -licm -pre - lang.opt4=-simplifycfg -instcombine -mem2reg -load-vn -gcse -dse -scalarrepl -sccp \ - -ipconstprop -branch-combine -adce -globaldce -inline -licm -pre - lang.opt5=-simplifycfg -instcombine -mem2reg --load-vn -gcse -dse scalarrepl -sccp \ - -ipconstprop -branch-combine -adce -globaldce -inline -licm -pre \ - -block-placement + lang.opt2=-simplifycfg -instcombine -mem2reg -load-vn \ + -gcse -dse -scalarrepl -sccp + lang.opt3=-simplifycfg -instcombine -mem2reg -load-vn \ + -gcse -dse -scalarrepl -sccp -branch-combine -adce \ + -globaldce -inline -licm + lang.opt4=-simplifycfg -instcombine -mem2reg -load-vn \ + -gcse -dse -scalarrepl -sccp -ipconstprop \ + -branch-combine -adce -globaldce -inline -licm + lang.opt5=-simplifycfg -instcombine -mem2reg --load-vn \ + -gcse -dse scalarrepl -sccp -ipconstprop \ + -branch-combine -adce -globaldce -inline -licm \ + -block-placement ########################################################## # Pre-processor definitions @@ -29,7 +33,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% %time% %stats% + translator.command=stkrc -s 2048 %in% -o %out% %time% \ + %stats% %args% # stkrc doesn't preprocess but we set this to true so # that we don't run the cp command by default. @@ -49,7 +54,8 @@ ########################################################## # For optimization, we use the LLVM "opt" program - optimizer.command=opt %in% -o %out% %opt% %time% %stats% + optimizer.command=opt %in% -o %out% %opt% %time% %stats% \ + %args% # opt doesn't (yet) grok -On optimizer.groks_dash_O=no @@ -63,8 +69,8 @@ ########################################################## # Assembler definitions ########################################################## - assembler.command=llc %in% -o %out% %target% "-regalloc=linearscan" \ - %time% %stats% + assembler.command=llc %in% -o %out% %target% \ + "-regalloc=linearscan" %time% %stats% ########################################################## # Linker definitions |