[llvm-commits] CVS: llvm/tools/gccas/gccas.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Apr 18 18:39:00 PDT 2003


Changes in directory llvm/tools/gccas:

gccas.cpp updated: 1.57 -> 1.58

---
Log message:

Eliminate some compatibility stuff no longer needed :P


---
Diffs of the changes:

Index: llvm/tools/gccas/gccas.cpp
diff -u llvm/tools/gccas/gccas.cpp:1.57 llvm/tools/gccas/gccas.cpp:1.58
--- llvm/tools/gccas/gccas.cpp:1.57	Wed Apr 16 12:49:18 2003
+++ llvm/tools/gccas/gccas.cpp	Fri Apr 18 18:38:09 2003
@@ -40,13 +40,6 @@
 
   cl::opt<bool>   
   Verify("verify", cl::desc("Verify each pass result"));
-
-
-  cl::opt<std::string>    // Be compatible with what GCC expects
-  QOption("Q", cl::desc("Compatibility option (ignored)"),
-          cl::Hidden, cl::Prefix);
-  cl::opt<bool>
-  PrintVersion("V", cl::desc("Print GCCAS version number"), cl::Hidden);
 }
 
 
@@ -148,9 +141,6 @@
     std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
     return 1;
   }
-
-  if (PrintVersion)  /* For GNU compatibility */
-    std::cerr << "LLVM GCCAS version xx\n" << std::flush;
 
   // In addition to just parsing the input from GCC, we also want to spiff it up
   // a little bit.  Do this now.





More information about the llvm-commits mailing list