Deleted Added
full compact
Targets.def (208963) Targets.def (210299)
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\*===----------------------------------------------------------------------===*/
1/* $FreeBSD: head/lib/clang/include/llvm/Config/Targets.def 210299 2010-07-20 17:16:57Z ed $ */
22
2
23#ifndef LLVM_TARGET
24# error Please define the macro LLVM_TARGET(TargetName)
25#endif
3LLVM_TARGET(Mips)
4LLVM_TARGET(ARM)
5LLVM_TARGET(PowerPC)
6LLVM_TARGET(X86)
26
7
27LLVM_TARGET(Mips) LLVM_TARGET(ARM) LLVM_TARGET(PowerPC) LLVM_TARGET(X86)
28
29#undef LLVM_TARGET
8#undef LLVM_TARGET