Fix dumb copy and paste typos

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1063 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-10-31 04:33:33 +00:00
parent e51e03b3c6
commit 11c862cf46

View File

@ -22,7 +22,7 @@ cl::String InputFilename ("", "Parse <arg> file, compile to bytecode",
cl::String OutputFilename("o", "Override output filename", cl::NoFlags, "");
int main(int argc, char **argv) {
cl::ParseCommandLineOptions(argc, argv, " llvm .ll -> .bc assembler\n");
cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
ostream *Out = 0;
std::auto_ptr<Module> M;