xref: /freebsd-src/lib/clang/include/llvm/Config/Disassemblers.def (revision 7aa383846770374466b1dcb2cefd71bde9acf463)
1/* $FreeBSD$ */
2//===- llvm/Config/Disassemblers.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_DISASSEMBLER
25#  error Please define the macro LLVM_DISASSEMBLER(TargetName)
26#endif
27
28LLVM_DISASSEMBLER(X86)
29
30#undef LLVM_DISASSEMBLER
31