aboutsummaryrefslogtreecommitdiffstats
path: root/tools/llvm-as
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-08-28 21:32:57 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-08-28 21:32:57 +0000
commitcbb62dd6b779db03a8ce907b109f05bd5c4a843a (patch)
tree3d0e39f038dca4d3d97f231bb890b4d4cb68b9b4 /tools/llvm-as
parentaeb54b882c0ca460517b90c634d2846c5c2aaab3 (diff)
downloadexternal_llvm-cbb62dd6b779db03a8ce907b109f05bd5c4a843a.zip
external_llvm-cbb62dd6b779db03a8ce907b109f05bd5c4a843a.tar.gz
external_llvm-cbb62dd6b779db03a8ce907b109f05bd5c4a843a.tar.bz2
Renaming LLVM `as' to `llvm-as'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8188 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-as')
-rw-r--r--tools/llvm-as/Makefile2
-rw-r--r--tools/llvm-as/as.cpp8
-rw-r--r--tools/llvm-as/llvm-as.cpp8
3 files changed, 9 insertions, 9 deletions
diff --git a/tools/llvm-as/Makefile b/tools/llvm-as/Makefile
index 7ac2c24..eea87f9 100644
--- a/tools/llvm-as/Makefile
+++ b/tools/llvm-as/Makefile
@@ -1,5 +1,5 @@
LEVEL = ../..
-TOOLNAME = as
+TOOLNAME = llvm-as
USEDLIBS = asmparser bcwriter vmcore support.a
include $(LEVEL)/Makefile.common
diff --git a/tools/llvm-as/as.cpp b/tools/llvm-as/as.cpp
index 4ca59b9..7655129 100644
--- a/tools/llvm-as/as.cpp
+++ b/tools/llvm-as/as.cpp
@@ -2,10 +2,10 @@
// LLVM 'AS' UTILITY
//
// This utility may be invoked in the following manner:
-// as --help - Output information about command line switches
-// as [options] - Read LLVM assembly from stdin, write bytecode to stdout
-// as [options] x.ll - Read LLVM assembly from the x.ll file, write bytecode
-// to the x.bc file.
+// llvm-as --help - Output information about command line switches
+// llvm-as [options] - Read LLVM asm from stdin, write bytecode to stdout
+// llvm-as [options] x.ll - Read LLVM asm from the x.ll file, write bytecode
+// to the x.bc file.
//
//===------------------------------------------------------------------------===
diff --git a/tools/llvm-as/llvm-as.cpp b/tools/llvm-as/llvm-as.cpp
index 4ca59b9..7655129 100644
--- a/tools/llvm-as/llvm-as.cpp
+++ b/tools/llvm-as/llvm-as.cpp
@@ -2,10 +2,10 @@
// LLVM 'AS' UTILITY
//
// This utility may be invoked in the following manner:
-// as --help - Output information about command line switches
-// as [options] - Read LLVM assembly from stdin, write bytecode to stdout
-// as [options] x.ll - Read LLVM assembly from the x.ll file, write bytecode
-// to the x.bc file.
+// llvm-as --help - Output information about command line switches
+// llvm-as [options] - Read LLVM asm from stdin, write bytecode to stdout
+// llvm-as [options] x.ll - Read LLVM asm from the x.ll file, write bytecode
+// to the x.bc file.
//
//===------------------------------------------------------------------------===