Nick Lewycky | 3fdcc6f | 2010-12-31 17:31:54 +0000 | [diff] [blame] | 1 | //===--- DriverOptions.cpp - Driver Options Table -------------------------===// |
Daniel Dunbar | 27e738d | 2009-11-19 00:15:11 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "clang/Driver/Options.h" |
| 11 | #include "clang/Driver/OptTable.h" |
| 12 | #include "clang/Driver/Option.h" |
| 13 | |
| 14 | using namespace clang::driver; |
| 15 | using namespace clang::driver::options; |
| 16 | |
Nuno Lopes | 68f7a24 | 2009-12-10 00:07:02 +0000 | [diff] [blame] | 17 | static const OptTable::Info InfoTable[] = { |
Daniel Dunbar | 27e738d | 2009-11-19 00:15:11 +0000 | [diff] [blame] | 18 | #define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \ |
| 19 | HELPTEXT, METAVAR) \ |
Benjamin Kramer | f634bce | 2011-10-22 15:40:28 +0000 | [diff] [blame] | 20 | { NAME, HELPTEXT, METAVAR, Option::KIND##Class, PARAM, FLAGS, \ |
Daniel Dunbar | 27e738d | 2009-11-19 00:15:11 +0000 | [diff] [blame] | 21 | OPT_##GROUP, OPT_##ALIAS }, |
Daniel Dunbar | 64bdce3 | 2009-11-19 01:03:50 +0000 | [diff] [blame] | 22 | #include "clang/Driver/Options.inc" |
Daniel Dunbar | 27e738d | 2009-11-19 00:15:11 +0000 | [diff] [blame] | 23 | }; |
| 24 | |
| 25 | namespace { |
| 26 | |
| 27 | class DriverOptTable : public OptTable { |
| 28 | public: |
| 29 | DriverOptTable() |
| 30 | : OptTable(InfoTable, sizeof(InfoTable) / sizeof(InfoTable[0])) {} |
| 31 | }; |
| 32 | |
| 33 | } |
| 34 | |
| 35 | OptTable *clang::driver::createDriverOptTable() { |
| 36 | return new DriverOptTable(); |
| 37 | } |