CC1AsOptions.h revision dd0b3c4c72464af92e2c27dd5a67e29f91ba7b28
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 PREFIX(NAME, VALUE)
26#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
27               HELPTEXT, METAVAR) OPT_##ID,
28#include "clang/Driver/CC1AsOptions.inc"
29    LastOption
30#undef OPTION
31#undef PREFIX
32  };
33}
34
35llvm::opt::OptTable *createCC1AsOptTable();
36}
37}
38
39#endif
40