1/* $FreeBSD$ */
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//===----------------------------------------------------------------------===//
23
24#ifndef LLVM_ASM_PRINTER
25#  error Please define the macro LLVM_ASM_PRINTER(TargetName)
26#endif
27
28LLVM_ASM_PRINTER(Mips) LLVM_ASM_PRINTER(ARM) LLVM_ASM_PRINTER(PowerPC) LLVM_ASM_PRINTER(X86)
29
30#undef LLVM_ASM_PRINTER
31