Deleted Added
full compact
AsmPrinters.def (208963) AsmPrinters.def (210299)
1/* $FreeBSD: head/lib/clang/include/llvm/Config/AsmPrinters.def 208963 2010-06-09 19:32:20Z rdivacky $ */
2//===- llvm/Config/AsmPrinters.def - LLVM Assembly Printers -----*- 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 printers
12// supported by this build of LLVM. Clients of this file should define
13// the LLVM_ASM_PRINTER 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 printers.
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/AsmPrinters.def 210299 2010-07-20 17:16:57Z ed $ */
23
2
24#ifndef LLVM_ASM_PRINTER
25# error Please define the macro LLVM_ASM_PRINTER(TargetName)
26#endif
3LLVM_ASM_PRINTER(Mips)
4LLVM_ASM_PRINTER(ARM)
5LLVM_ASM_PRINTER(PowerPC)
6LLVM_ASM_PRINTER(X86)
27
7
28LLVM_ASM_PRINTER(Mips) LLVM_ASM_PRINTER(ARM) LLVM_ASM_PRINTER(PowerPC) LLVM_ASM_PRINTER(X86)
29
30#undef LLVM_ASM_PRINTER
8#undef LLVM_ASM_PRINTER