AsmParsers.def revision 208963
1/* $FreeBSD: head/lib/clang/include/llvm/Config/AsmParsers.def 208963 2010-06-09 19:32:20Z rdivacky $ */
2//===- llvm/Config/AsmParsers.def - LLVM Assembly Parsers -------*- C++ -*-===//
3//
4//                     The LLVM Compiler Infrastructure
5//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10//
11// This file enumerates all of the assembly-language parsers
12// supported by this build of LLVM. Clients of this file should define
13// the LLVM_ASM_PARSER macro to be a function-like macro with a
14// single parameter (the name of the target whose assembly can be
15// generated); including this file will then enumerate all of the
16// targets with assembly parsers.
17//
18// The set of targets supported by LLVM is generated at configuration
19// time, at which point this header is generated. Do not modify this
20// header directly.
21//
22//===----------------------------------------------------------------------===//
23
24#ifndef LLVM_ASM_PARSER
25#  error Please define the macro LLVM_ASM_PARSER(TargetName)
26#endif
27
28LLVM_ASM_PARSER(ARM) LLVM_ASM_PARSER(X86) 
29
30#undef LLVM_ASM_PARSER
31