Support the gas option --traditional-format which, for some reason, gets
authorReid Spencer <rspencer@reidspencer.com>
Wed, 22 Dec 2004 02:58:43 +0000 (02:58 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Wed, 22 Dec 2004 02:58:43 +0000 (02:58 +0000)
passed to gccas when the --program-prefix option is used to configure CFE.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19091 91177308-0d34-0410-b5e6-96231b3b80d8

tools/gccas/gccas.cpp

index ef1d8d6376d9065dd7d61313a8bd53ce381c67ef..813042cf50c71581c14d09ebd1ea5bd64ab10596 100644 (file)
@@ -54,6 +54,9 @@ namespace {
   cl::opt<bool> 
   NoCompress("disable-compression", cl::init(false),
              cl::desc("Don't ompress the generated bytecode"));
+
+  cl::opt<bool> TF("traditional-format", cl::Hidden,
+    cl::desc("Compatibility option: ignored"));
 }