diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index 6486bd77843..f6905d65751 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -815,12 +815,12 @@ following is a brief introduction to the most important tools.

-
as
The assembler transforms the human readable +
llvm-as
The assembler transforms the human readable LLVM assembly to LLVM bytecode.

-

dis
The disassembler transforms the LLVM bytecode - to human readable LLVM assembly. Additionally it can convert LLVM - bytecode to C, which is enabled with the -c option.

+

llvm-dis
The disassembler transforms the LLVM + bytecode to human readable LLVM assembly. Additionally it can convert + LLVM bytecode to C, which is enabled with the -c option.

lli
lli is the LLVM interpreter, which can directly execute LLVM bytecode (although very slowly...). In addition @@ -851,7 +851,7 @@ x.o file (which is an LLVM bytecode file that can be disassembled or manipulated just like any other bytecode file). The command line interface to gccas is designed to be as close as - possible to the system 'as' utility so that the gcc + possible to the system `as' utility so that the gcc frontend itself did not have to be modified to interface to a "weird" assembler.

@@ -1035,10 +1035,10 @@ % lli hello.bc

-

  • Use the dis utility to take a look at the LLVM assembly +
  • Use the llvm-dis utility to take a look at the LLVM assembly code:

    - % dis < hello.bc | less

    + % llvm-dis < hello.bc | less

  • Compile the program to native Sparc assembly using the code generator (assuming you are currently on a Sparc system):