aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-05-01 11:40:07 +0000
committerChris Lattner <sabre@nondot.org>2004-05-01 11:40:07 +0000
commita19a3db4465e33eeebcdac94b0f6abeda7801aab (patch)
tree1ef2093cf705a302f560b251f2eb6fe4871ea2cb
parent55a4700857ffb64677ac825b553939724e14a0ec (diff)
Add comment about optimizations
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13298 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/GettingStarted.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index 04cd682012..41cb1b98c9 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -1132,7 +1132,9 @@ are code generators for parts of LLVM infrastructure.</p>
<tt>hello.bc</tt>. The <tt>hello.bc</tt> is the LLVM bytecode that
corresponds the the compiled program and the library facilities that it
required. <tt>hello</tt> is a simple shell script that runs the bytecode
- file with <tt>lli</tt>, making the result directly executable.</p></li>
+ file with <tt>lli</tt>, making the result directly executable. Note that
+ all LLVM optimizations are enabled by default, so there is no need for a
+ "-O3" switch.</p></li>
<li><p>Run the program. To make sure the program ran, execute one of the
following commands:</p>