]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.cpp
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / Basic / Targets / SPIR.cpp
1 //===--- SPIR.cpp - Implement SPIR target feature support -----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements SPIR TargetInfo objects.
10 //
11 //===----------------------------------------------------------------------===//
12
13 #include "SPIR.h"
14 #include "Targets.h"
15
16 using namespace clang;
17 using namespace clang::targets;
18
19 void SPIRTargetInfo::getTargetDefines(const LangOptions &Opts,
20                                       MacroBuilder &Builder) const {
21   DefineStd(Builder, "SPIR", Opts);
22 }
23
24 void SPIR32TargetInfo::getTargetDefines(const LangOptions &Opts,
25                                         MacroBuilder &Builder) const {
26   DefineStd(Builder, "SPIR32", Opts);
27 }
28
29 void SPIR64TargetInfo::getTargetDefines(const LangOptions &Opts,
30                                         MacroBuilder &Builder) const {
31   DefineStd(Builder, "SPIR64", Opts);
32 }