From: Hans Wennborg Date: Wed, 31 Jul 2013 23:28:51 +0000 (+0000) Subject: Option parsing: remove non-SUPPORT_ALIASARGS fall-back X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a15d5db7f25b609faa1780a954451e4a07d39f37;p=oota-llvm.git Option parsing: remove non-SUPPORT_ALIASARGS fall-back The clients of this code have been updated to all support AliasArgs. This depends on Clang r187538 and lld r187541. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187546 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Option/OptionParsingTest.cpp b/unittests/Option/OptionParsingTest.cpp index 101568a567e..2a5a5a9c947 100644 --- a/unittests/Option/OptionParsingTest.cpp +++ b/unittests/Option/OptionParsingTest.cpp @@ -17,8 +17,6 @@ using namespace llvm; using namespace llvm::opt; -#define SUPPORT_ALIASARGS // FIXME: Remove when no longer necessary. - enum ID { OPT_INVALID = 0, // This is not an option ID. #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ diff --git a/utils/TableGen/OptParserEmitter.cpp b/utils/TableGen/OptParserEmitter.cpp index d37939f635d..86328bf18f5 100644 --- a/utils/TableGen/OptParserEmitter.cpp +++ b/utils/TableGen/OptParserEmitter.cpp @@ -152,22 +152,11 @@ void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) { OS << "/////////\n"; OS << "// Groups\n\n"; OS << "#ifdef OPTION\n"; - - // FIXME: Remove when option parsing clients are updated. - OS << "#ifdef SUPPORT_ALIASARGS\n"; - OS << "#define OPTIONX OPTION\n"; - OS << "#else\n"; - OS << "#define OPTIONX(prefix, name, id, kind, group, alias, aliasargs, " - << "flags, param, helptext, metavar) " - << "OPTION(prefix, name, id, kind, " - << "group, alias, flags, param, helptext, metavar)\n"; - OS << "#endif\n"; - for (unsigned i = 0, e = Groups.size(); i != e; ++i) { const Record &R = *Groups[i]; // Start a single option entry. - OS << "OPTIONX("; + OS << "OPTION("; // The option prefix; OS << "0"; @@ -210,7 +199,7 @@ void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) { const Record &R = *Opts[i]; // Start a single option entry. - OS << "OPTIONX("; + OS << "OPTION("; // The option prefix; std::vector prf = R.getValueAsListOfStrings("Prefixes"); @@ -287,7 +276,6 @@ void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) { OS << ")\n"; } - OS << "#undef OPTIONX\n"; // FIXME: Remove when option clients are updated. OS << "#endif\n"; } } // end namespace llvm