Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Side by Side Diff: include/llvm/Config/SZTargets.def.in

Issue 1084753002: Add some configure/CMake options for enabling/disabling Subzero targets. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: line up better Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « configure ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /*===- llvm/Config/Targets.def - LLVM Target Architectures ------*- C++ -*-===*\ 1 /*===- llvm/Config/SZTargets.def - Subzero Target Architectures -*- C++ -*-===*\
2 |* *| 2 |* *|
3 |* The LLVM Compiler Infrastructure *| 3 |* The LLVM Compiler Infrastructure *|
4 |* *| 4 |* *|
5 |* This file is distributed under the University of Illinois Open Source *| 5 |* This file is distributed under the University of Illinois Open Source *|
6 |* License. See LICENSE.TXT for details. *| 6 |* License. See LICENSE.TXT for details. *|
7 |* *| 7 |* *|
8 |*===----------------------------------------------------------------------===*| 8 |*===----------------------------------------------------------------------===*|
9 |* *| 9 |* *|
10 |* This file enumerates all of the target architectures supported by *| 10 |* This file enumerates all of the target architectures supported by *|
11 |* this build of LLVM. Clients of this file should define the *| 11 |* this build of Subzero. Clients of this file should define the *|
12 |* LLVM_TARGET macro to be a function-like macro with a single *| 12 |* SUBZERO_TARGET macro to be a function-like macro with a single *|
13 |* parameter (the name of the target); including this file will then *| 13 |* parameter (the name of the target); including this file will then *|
14 |* enumerate all of the targets. *| 14 |* enumerate all of the targets. *|
15 |* *| 15 |* *|
16 |* The set of targets supported by LLVM is generated at configuration *| 16 |* The set of targets supported by LLVM is generated at configuration *|
17 |* time, at which point this header is generated. Do not modify this *| 17 |* time, at which point this header is generated. Do not modify this *|
18 |* header directly. *| 18 |* header directly. *|
19 |* *| 19 |* *|
20 \*===----------------------------------------------------------------------===*/ 20 \*===----------------------------------------------------------------------===*/
21 21
22 #ifndef LLVM_TARGET 22 #ifndef SUBZERO_TARGET
23 # error Please define the macro LLVM_TARGET(TargetName) 23 # error Please define the macro SUBZERO_TARGET(TargetName)
24 #endif 24 #endif
25 25
26 @LLVM_ENUM_TARGETS@ 26 @SUBZERO_ENUM_TARGETS@
27 27
28 #undef LLVM_TARGET 28 #undef SUBZERO_TARGET
OLDNEW
« no previous file with comments | « configure ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698