summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-10-19 18:23:05 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-10-19 18:23:05 +0000
commit294fab1d079ef8dbcadcf2782b22ffdd0c849a81 (patch)
tree88c8a0f9c9e0c7454d9fdba181739edb7df0c50f /docs
parent102ed5c3a7ae243d3899c04f2261316d68a24538 (diff)
downloadllvm-294fab1d079ef8dbcadcf2782b22ffdd0c849a81.tar.gz
llvm-294fab1d079ef8dbcadcf2782b22ffdd0c849a81.tar.bz2
llvm-294fab1d079ef8dbcadcf2782b22ffdd0c849a81.tar.xz
Change it to match llvmgcc.html ... why do we have separate pages for these two?
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9265 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/CommandGuide/llvmgxx.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/CommandGuide/llvmgxx.html b/docs/CommandGuide/llvmgxx.html
index 7efd46d96e..0b74e43623 100644
--- a/docs/CommandGuide/llvmgxx.html
+++ b/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>,