]> git.proxmox.com Git - rustc.git/blame - src/llvm/tools/clang/include/clang/Driver/CC1AsOptions.h
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / include / clang / Driver / CC1AsOptions.h
CommitLineData
223e47cc
LB
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 clang {
14namespace driver {
15 class OptTable;
16
17namespace cc1asoptions {
18 enum ID {
19 OPT_INVALID = 0, // This is not an option ID.
20#define OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
21 HELPTEXT, METAVAR) OPT_##ID,
22#include "clang/Driver/CC1AsOptions.inc"
23 LastOption
24#undef OPTION
25 };
26}
27
28 OptTable *createCC1AsOptTable();
29}
30}
31
32#endif