[llvm-commits] CVS: llvm/tools/gccas/gccas.cpp
Reid Spencer
reid at x10sys.com
Tue Dec 21 18:58:53 PST 2004
Changes in directory llvm/tools/gccas:
gccas.cpp updated: 1.104 -> 1.105
---
Log message:
Support the gas option --traditional-format which, for some reason, gets
passed to gccas when the --program-prefix option is used to configure CFE.
---
Diffs of the changes: (+3 -0)
Index: llvm/tools/gccas/gccas.cpp
diff -u llvm/tools/gccas/gccas.cpp:1.104 llvm/tools/gccas/gccas.cpp:1.105
--- llvm/tools/gccas/gccas.cpp:1.104 Thu Dec 2 23:45:58 2004
+++ llvm/tools/gccas/gccas.cpp Tue Dec 21 20:58:43 2004
@@ -54,6 +54,9 @@
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"));
}
More information about the llvm-commits
mailing list