summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-08-14 20:51:35 +0000
committerChris Lattner <sabre@nondot.org>2006-08-14 20:51:35 +0000
commit6e3b7c28f37295cf2a90fa246a77bfe104257ad1 (patch)
tree30658f5dd73bdf5f5725e6d87154b33c897d30dd /docs
parent5907d407e3c39d630f1eca220d646733d03fdebd (diff)
downloadllvm-6e3b7c28f37295cf2a90fa246a77bfe104257ad1.tar.gz
llvm-6e3b7c28f37295cf2a90fa246a77bfe104257ad1.tar.bz2
llvm-6e3b7c28f37295cf2a90fa246a77bfe104257ad1.tar.xz
Fix more validation issues
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29671 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/GettingStarted.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index ca0256d9e0..5910ebc305 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -1535,10 +1535,10 @@ transitioning from llvm-gcc3 to llvm-gcc4, we include examples for both.
<p>and</p>
- <p><tt>% lli hello.bc</tt></p></li>
+ <p><tt>% lli hello.bc</tt></p>
<p>The second examples shows how to invoke the LLVM JIT, <a
- href="CommandGuide/html/lli.html">lli</a>.</p>
+ href="CommandGuide/html/lli.html">lli</a>.</p></li>
<li><p>Use the <tt>llvm-dis</tt> utility to take a look at the LLVM assembly
code:</p>
@@ -1557,10 +1557,11 @@ transitioning from llvm-gcc3 to llvm-gcc4, we include examples for both.
<li><p>Execute the native code program:</p>
- <p><tt>% ./hello.native</tt></p></li>
+ <p><tt>% ./hello.native</tt></p>
<p>Note that using llvm-gcc to compile directly to native code (i.e. when
the -emit-llvm option is not present) does steps 6/7/8 for you.</p>
+ </li>
</ol>