diff options
author | Chris Lattner <sabre@nondot.org> | 2004-05-01 11:40:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-05-01 11:40:07 +0000 |
commit | 15a041ca88bd0977b9b56e31519d8bba89a8527d (patch) | |
tree | cc1f547459a57be222eb878c209ad52ae6045f82 | |
parent | 490e804a4e5b19ee972d6d22b994a6d525f649f3 (diff) | |
download | bcm5719-llvm-15a041ca88bd0977b9b56e31519d8bba89a8527d.tar.gz bcm5719-llvm-15a041ca88bd0977b9b56e31519d8bba89a8527d.zip |
Add comment about optimizations
llvm-svn: 13298
-rw-r--r-- | llvm/docs/GettingStarted.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/docs/GettingStarted.html b/llvm/docs/GettingStarted.html index 04cd6820124..41cb1b98c9a 100644 --- a/llvm/docs/GettingStarted.html +++ b/llvm/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> |