Fix dumb copy and paste typos
authorChris Lattner <sabre@nondot.org>
Wed, 31 Oct 2001 04:33:33 +0000 (04:33 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 31 Oct 2001 04:33:33 +0000 (04:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1063 91177308-0d34-0410-b5e6-96231b3b80d8

tools/gccas/gccas.cpp

index 4d1f0b2d7948f9d365b89cfbeef21ed31afeea8f..db99cbf268debe0a5a897d0e442c30203ac8f90d 100644 (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;