Deleted Added
full compact
Disassemblers.def (208963) Disassemblers.def (210299)
1/* $FreeBSD: head/lib/clang/include/llvm/Config/Disassemblers.def 208963 2010-06-09 19:32:20Z rdivacky $ */
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//===----------------------------------------------------------------------===//
1/* $FreeBSD: head/lib/clang/include/llvm/Config/Disassemblers.def 210299 2010-07-20 17:16:57Z ed $ */
23
2
24#ifndef LLVM_DISASSEMBLER
25# error Please define the macro LLVM_DISASSEMBLER(TargetName)
26#endif
3LLVM_DISASSEMBLER(X86)
27
4
28LLVM_DISASSEMBLER(X86)
29
30#undef LLVM_DISASSEMBLER
5#undef LLVM_DISASSEMBLER