diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-28 22:02:50 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-28 22:02:50 +0000 |
commit | a0a0a03946648a58d263912d4d72029799c9f71e (patch) | |
tree | 807522686129399743303ed600b10cbd712645eb /docs | |
parent | 82086a5894a7ed6fc112a61637a508e45c425b56 (diff) |
Renaming `as' -> `llvm-as' and `dis' -> `llvm-dis'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8195 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/GettingStarted.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index 6486bd7784..f6905d6575 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -815,12 +815,12 @@ following is a brief introduction to the most important tools.</p> <dl compact> - <dt><tt><b>as</b></tt><dd>The assembler transforms the human readable + <dt><tt><b>llvm-as</b></tt><dd>The assembler transforms the human readable LLVM assembly to LLVM bytecode.<p> - <dt><tt><b>dis</b></tt><dd>The disassembler transforms the LLVM bytecode - to human readable LLVM assembly. Additionally it can convert LLVM - bytecode to C, which is enabled with the <tt>-c</tt> option.<p> + <dt><tt><b>llvm-dis</b></tt><dd>The disassembler transforms the LLVM + bytecode to human readable LLVM assembly. Additionally it can convert + LLVM bytecode to C, which is enabled with the <tt>-c</tt> option.<p> <dt><tt><b>lli</b></tt><dd> <tt>lli</tt> is the LLVM interpreter, which can directly execute LLVM bytecode (although very slowly...). In addition @@ -851,7 +851,7 @@ <tt>x.o</tt> file (which is an LLVM bytecode file that can be disassembled or manipulated just like any other bytecode file). The command line interface to <tt>gccas</tt> is designed to be as close as - possible to the <b>system</b> '<tt>as</tt>' utility so that the gcc + possible to the <b>system</b> `<tt>as</tt>' utility so that the gcc frontend itself did not have to be modified to interface to a "weird" assembler.<p> @@ -1035,10 +1035,10 @@ <tt>% lli hello.bc</tt><p> - <li>Use the <tt>dis</tt> utility to take a look at the LLVM assembly + <li>Use the <tt>llvm-dis</tt> utility to take a look at the LLVM assembly code:<p> - <tt>% dis < hello.bc | less</tt><p> + <tt>% llvm-dis < hello.bc | less</tt><p> <li>Compile the program to native Sparc assembly using the code generator (assuming you are currently on a Sparc system):<p> |