summaryrefslogtreecommitdiffstats
path: root/clang/test/Frontend
diff options
context:
space:
mode:
authorYaxun Liu <Yaxun.Liu@amd.com>2016-07-13 21:21:05 +0000
committerYaxun Liu <Yaxun.Liu@amd.com>2016-07-13 21:21:05 +0000
commit02c3979e226d8d5782e2ea2b6b5d9a1010854181 (patch)
treed8f09addaa3d2a1b8858ccd54a226e6b6ddceef9 /clang/test/Frontend
parent640a61cd8bb4f0172bd0ec392d5e0f2e4d65c1bf (diff)
downloadbcm5719-llvm-02c3979e226d8d5782e2ea2b6b5d9a1010854181.tar.gz
bcm5719-llvm-02c3979e226d8d5782e2ea2b6b5d9a1010854181.zip
[OpenCL] Fixes failures in test/Driver/opencl.cl.
Also fixes strict-aliasing option to only be allowed when OpenCL Version 1.0. Added testcase in test/Frontend/opencl-blocks.cl. Patch by Aaron En Ye Shi. Differential Revision: http://reviews.llvm.org/D22170 llvm-svn: 275318
Diffstat (limited to 'clang/test/Frontend')
-rw-r--r--clang/test/Frontend/opencl.cl (renamed from clang/test/Frontend/opencl-blocks.cl)7
1 files changed, 7 insertions, 0 deletions
diff --git a/clang/test/Frontend/opencl-blocks.cl b/clang/test/Frontend/opencl.cl
index b514efa7cfc..b0ff6967e12 100644
--- a/clang/test/Frontend/opencl-blocks.cl
+++ b/clang/test/Frontend/opencl.cl
@@ -6,6 +6,9 @@
// RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.1 -fblocks -DBLOCKS
// RUN: %clang_cc1 %s -verify -fsyntax-only -cl-std=CL1.2 -fblocks -DBLOCKS
// RUN: %clang_cc1 %s -triple amdgcn--amdhsa -x c -std=c99 -verify -fsyntax-only
+// RUN: %clang_cc1 -cl-std=CL1.1 -cl-strict-aliasing %s 2>&1 | FileCheck --check-prefix=CHECK-INVALID-OPENCL-VERSION11 %s
+// RUN: %clang_cc1 -cl-std=CL1.2 -cl-strict-aliasing %s 2>&1 | FileCheck --check-prefix=CHECK-INVALID-OPENCL-VERSION12 %s
+// RUN: %clang_cc1 -cl-std=CL2.0 -cl-strict-aliasing %s 2>&1 | FileCheck --check-prefix=CHECK-INVALID-OPENCL-VERSION20 %s
void f(void (^g)(void)) {
#ifdef __OPENCL_C_VERSION__
@@ -18,3 +21,7 @@ void f(void (^g)(void)) {
// expected-error@-8{{blocks support disabled - compile with -fblocks or pick a deployment target that supports them}}
#endif
}
+
+// CHECK-INVALID-OPENCL-VERSION11: warning: OpenCL version 1.1 does not support the option '-cl-strict-aliasing'
+// CHECK-INVALID-OPENCL-VERSION12: warning: OpenCL version 1.2 does not support the option '-cl-strict-aliasing'
+// CHECK-INVALID-OPENCL-VERSION20: warning: OpenCL version 2.0 does not support the option '-cl-strict-aliasing' \ No newline at end of file
OpenPOWER on IntegriCloud