diff --git a/docs/CommandGuide/llvmgxx.html b/docs/CommandGuide/llvmgxx.html index 7efd46d96e9..0b74e436233 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.

-The llvmg++ program uses the gccas and gccld to -assist with the creation of complete programs. +Unless the -S option is specified, llvmg++ will use the +gccas program to perform some optimizations +and create an LLVM bytecode file. Unless the -c option is specified, +llvmg++ will also use the gccld +program to perform further optimizations and link the resulting bytecode +file(s) with support libraries to create an executable program.

Being derived from the GNU Compiler Collection,