diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-28 21:32:57 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-28 21:32:57 +0000 |
commit | 9893027b5ed6042fc7f32359661cf5318b896db7 (patch) | |
tree | 49d27a2cbb26ad4b57310274078079c787e2dff6 /llvm/tools | |
parent | 147b66cd2bad097beb3c50d57f8e87e60b04820b (diff) | |
download | bcm5719-llvm-9893027b5ed6042fc7f32359661cf5318b896db7.tar.gz bcm5719-llvm-9893027b5ed6042fc7f32359661cf5318b896db7.zip |
Renaming LLVM `as' to `llvm-as'.
llvm-svn: 8188
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/llvm-as/Makefile | 2 | ||||
-rw-r--r-- | llvm/tools/llvm-as/as.cpp | 8 | ||||
-rw-r--r-- | llvm/tools/llvm-as/llvm-as.cpp | 8 |
3 files changed, 9 insertions, 9 deletions
diff --git a/llvm/tools/llvm-as/Makefile b/llvm/tools/llvm-as/Makefile index 7ac2c2432d8..eea87f9bcf2 100644 --- a/llvm/tools/llvm-as/Makefile +++ b/llvm/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/llvm/tools/llvm-as/as.cpp b/llvm/tools/llvm-as/as.cpp index 4ca59b99803..7655129e58d 100644 --- a/llvm/tools/llvm-as/as.cpp +++ b/llvm/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/llvm/tools/llvm-as/llvm-as.cpp b/llvm/tools/llvm-as/llvm-as.cpp index 4ca59b99803..7655129e58d 100644 --- a/llvm/tools/llvm-as/llvm-as.cpp +++ b/llvm/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. // //===------------------------------------------------------------------------=== |