1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Support the gas option --traditional-format which, for some reason, gets

passed to gccas when the --program-prefix option is used to configure CFE.

llvm-svn: 19091
This commit is contained in:
Reid Spencer 2004-12-22 02:58:43 +00:00
parent 54ea813d37
commit 6921d82714

View 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"));
}