CC1AsOptions.h revision 263508
1//===--- CC1AsOptions.h - Clang Assembler Options Table ---------*- C++ -*-===//
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#ifndef CLANG_DRIVER_CC1ASOPTIONS_H
11#define CLANG_DRIVER_CC1ASOPTIONS_H
12
13namespace llvm {
14namespace opt {
15  class OptTable;
16}
17}
18
19namespace clang {
20namespace driver {
21
22namespace cc1asoptions {
23  enum ID {
24    OPT_INVALID = 0, // This is not an option ID.
25#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
26               HELPTEXT, METAVAR) OPT_##ID,
27#include "clang/Driver/CC1AsOptions.inc"
28    LastOption
29#undef OPTION
30  };
31}
32
33llvm::opt::OptTable *createCC1AsOptTable();
34}
35}
36
37#endif
38