From e2b14e52c79c99fee0b4f8afc59e984f305bdfd2 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Wed, 22 Dec 2004 02:58:43 +0000 Subject: [PATCH] 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 --- llvm/tools/gccas/gccas.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/llvm/tools/gccas/gccas.cpp b/llvm/tools/gccas/gccas.cpp index ef1d8d6376d9..813042cf50c7 100644 --- a/llvm/tools/gccas/gccas.cpp +++ b/llvm/tools/gccas/gccas.cpp @@ -54,6 +54,9 @@ namespace { cl::opt NoCompress("disable-compression", cl::init(false), cl::desc("Don't ompress the generated bytecode")); + + cl::opt TF("traditional-format", cl::Hidden, + cl::desc("Compatibility option: ignored")); }