diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-19 18:23:05 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-19 18:23:05 +0000 |
commit | 98e1f50d0c30b5ec3171cc50a0533a17fa76f494 (patch) | |
tree | 605091dc35c6cbb7ed3a9bf1688ef60a3a757d73 /llvm/docs/CommandGuide | |
parent | 7c49d984d2ed44164fd47854e0c9d70ecaf1dd95 (diff) | |
download | bcm5719-llvm-98e1f50d0c30b5ec3171cc50a0533a17fa76f494.tar.gz bcm5719-llvm-98e1f50d0c30b5ec3171cc50a0533a17fa76f494.zip |
Change it to match llvmgcc.html ... why do we have separate pages for these two?
llvm-svn: 9265
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/llvmgxx.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/docs/CommandGuide/llvmgxx.html b/llvm/docs/CommandGuide/llvmgxx.html index 7efd46d96e9..0b74e436233 100644 --- a/llvm/docs/CommandGuide/llvmgxx.html +++ b/llvm/docs/CommandGuide/llvmgxx.html @@ -23,8 +23,12 @@ version of g++ that takes C++ programs and compiles them into LLVM bytecode or assembly language, depending upon the options. <p> -The <tt>llvmg++</tt> program uses the <tt>gccas</tt> and <tt>gccld</tt> to -assist with the creation of complete programs. +Unless the <tt>-S</tt> option is specified, <tt>llvmg++</tt> will use the +<a href="gccas.html"><tt>gccas</tt></a> program to perform some optimizations +and create an LLVM bytecode file. Unless the <tt>-c</tt> option is specified, +<tt>llvmg++</tt> will also use the <a href="gccld.html"><tt>gccld</tt></a> +program to perform further optimizations and link the resulting bytecode +file(s) with support libraries to create an executable program. <p> Being derived from the <a href="http://gcc.gnu.org">GNU Compiler Collection</a>, |