Targets.def revision 208963
1/* $FreeBSD: head/lib/clang/include/llvm/Config/Targets.def 208963 2010-06-09 19:32:20Z rdivacky $ */
2/*===- llvm/Config/Targets.def - LLVM Target Architectures ------*- 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 target architectures supported by          *|
12|* this build of LLVM. Clients of this file should define the                 *|
13|* LLVM_TARGET macro to be a function-like macro with a single                *|
14|* parameter (the name of the target); including this file will then          *|
15|* enumerate all of the targets.                                              *|
16|*                                                                            *|
17|* The set of targets supported by LLVM is generated at configuration         *|
18|* time, at which point this header is generated. Do not modify this          *|
19|* header directly.                                                           *|
20|*                                                                            *|
21\*===----------------------------------------------------------------------===*/
22
23#ifndef LLVM_TARGET
24#  error Please define the macro LLVM_TARGET(TargetName)
25#endif
26
27LLVM_TARGET(Mips) LLVM_TARGET(ARM) LLVM_TARGET(PowerPC) LLVM_TARGET(X86) 
28
29#undef LLVM_TARGET
30