summaryrefslogtreecommitdiff
path: root/include/clang/Driver/Options.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-03-12 01:46:53 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-03-12 01:46:53 +0000
commite1495eced887466e235f6a034953adf5ee1e14e6 (patch)
tree34ae4ea396e66ac1aee5bebdb464cba268ba485a /include/clang/Driver/Options.h
parentd8cadd4f250d1b69373fc80477f67375d2c54820 (diff)
downloadclang-e1495eced887466e235f6a034953adf5ee1e14e6.tar.gz
Driver: Reorder arguments in Options.def so option name is first.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66759 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Driver/Options.h')
-rw-r--r--include/clang/Driver/Options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Driver/Options.h b/include/clang/Driver/Options.h
index f83e5ceace..f5551e644a 100644
--- a/include/clang/Driver/Options.h
+++ b/include/clang/Driver/Options.h
@@ -17,7 +17,7 @@ namespace options {
NotOption = 0, // This is not an option ID.
InputOpt, // Reserved ID for input option.
UnknownOpt, // Reserved ID for unknown option.
-#define OPTION(ID, KIND, NAME, GROUP, ALIAS, FLAGS, PARAM) ID,
+#define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM) ID,
#include "clang/Driver/Options.def"
LastOption
#undef OPTION