diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-25 15:54:01 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-25 15:54:01 +0000 |
commit | 0cabaa54e512420f3057ffe781ff317ecb9196ed (patch) | |
tree | 1295f1b7ee5d5a77c367bfd54b52c05c29c46183 /docs/HowToSubmitABug.html | |
parent | 47dd94e542f78b518b4fa70c0c00b1be7e3cf5a6 (diff) | |
download | external_llvm-0cabaa54e512420f3057ffe781ff317ecb9196ed.zip external_llvm-0cabaa54e512420f3057ffe781ff317ecb9196ed.tar.gz external_llvm-0cabaa54e512420f3057ffe781ff317ecb9196ed.tar.bz2 |
Update documentation for the -f change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79996 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/HowToSubmitABug.html')
-rw-r--r-- | docs/HowToSubmitABug.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/HowToSubmitABug.html b/docs/HowToSubmitABug.html index bdec1c0..91d4e2b 100644 --- a/docs/HowToSubmitABug.html +++ b/docs/HowToSubmitABug.html @@ -183,12 +183,12 @@ to llvm-gcc (in addition to the options you already pass). Once your have foo.bc, one of the following commands should fail:</p> <ol> -<li><tt><b>llc</b> foo.bc -f</tt></li> -<li><tt><b>llc</b> foo.bc -f -relocation-model=pic</tt></li> -<li><tt><b>llc</b> foo.bc -f -relocation-model=static</tt></li> -<li><tt><b>llc</b> foo.bc -f -enable-eh</tt></li> -<li><tt><b>llc</b> foo.bc -f -relocation-model=pic -enable-eh</tt></li> -<li><tt><b>llc</b> foo.bc -f -relocation-model=static -enable-eh</tt></li> +<li><tt><b>llc</b> foo.bc</tt></li> +<li><tt><b>llc</b> foo.bc -relocation-model=pic</tt></li> +<li><tt><b>llc</b> foo.bc -relocation-model=static</tt></li> +<li><tt><b>llc</b> foo.bc -enable-eh</tt></li> +<li><tt><b>llc</b> foo.bc -relocation-model=pic -enable-eh</tt></li> +<li><tt><b>llc</b> foo.bc -relocation-model=static -enable-eh</tt></li> </ol> <p>If none of these crash, please follow the instructions for a @@ -320,7 +320,7 @@ the following:</p> <div class="doc_code"> <p><tt> -<b>llc</b> test.bc -o test.s -f<br> +<b>llc</b> test.bc -o test.s<br> <b>gcc</b> test.s safe.so -o test.llc<br> ./test.llc [program options] </tt></p> |