diff options
author | Alexey Bader <alexey.bader@intel.com> | 2019-12-10 16:52:58 +0300 |
---|---|---|
committer | Alexey Bader <alexey.bader@intel.com> | 2019-12-11 12:40:43 +0300 |
commit | cb30ad728f0b7666691c72a6a1399f36ebc60ad5 (patch) | |
tree | 7ac41df3c9efcf1131b3a9f3f776c900060dae18 /clang/test/Frontend | |
parent | f21c081b78ec7a83a79137c65edd58874b262761 (diff) | |
download | bcm5719-llvm-cb30ad728f0b7666691c72a6a1399f36ebc60ad5.tar.gz bcm5719-llvm-cb30ad728f0b7666691c72a6a1399f36ebc60ad5.zip |
[SYCL] Add support for auxiliary triple specification to Frontend
Summary:
Add host predefined macros to compilation for SYCL device, which is
required for pre-processing host specific includes (e.g. system
headers).
Reviewers: ABataev, jdoerfert
Subscribers: ebevhan, Anastasia, cfe-commits, keryell, Naghasan, Fznamznon
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71286
Signed-off-by: Alexey Bader <alexey.bader@intel.com>
Diffstat (limited to 'clang/test/Frontend')
-rw-r--r-- | clang/test/Frontend/sycl-aux-triple.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/Frontend/sycl-aux-triple.cpp b/clang/test/Frontend/sycl-aux-triple.cpp new file mode 100644 index 00000000000..38b6a24fb3c --- /dev/null +++ b/clang/test/Frontend/sycl-aux-triple.cpp @@ -0,0 +1,5 @@ +// RUN: %clang_cc1 %s -triple spir -aux-triple x86_64-unknown-linux-gnu -E -dM | FileCheck %s +// RUN: %clang_cc1 %s -fsycl-is-device -triple spir -aux-triple x86_64-unknown-linux-gnu -E -dM | FileCheck --check-prefix=CHECK-SYCL %s + +// CHECK-NOT:#define __x86_64__ 1 +// CHECK-SYCL:#define __x86_64__ 1 |