From a0a0a03946648a58d263912d4d72029799c9f71e Mon Sep 17 00:00:00 2001
From: Misha Brukman
Date: Thu, 28 Aug 2003 22:02:50 +0000
Subject: [PATCH] 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
---
docs/GettingStarted.html | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
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):
--
2.34.1