Update documentation for the -f change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79996 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2009-08-25 15:54:01 +00:00
parent 47dd94e542
commit 0cabaa54e5
9 changed files with 37 additions and 35 deletions
+7 -7
View File
@@ -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>