From: Tom Stellard Date: Thu, 16 Oct 2014 15:29:17 +0000 (+0000) Subject: OpenCL: Add -ffake-address-space-map to a test X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2391c35d7974398d3f8290e2283034c3cba76988;p=platform%2Fupstream%2Fllvm.git OpenCL: Add -ffake-address-space-map to a test The ensures there is an explicit address space id in the output. llvm-svn: 219928 --- diff --git a/clang/test/SemaOpenCL/extern.cl b/clang/test/SemaOpenCL/extern.cl index ee5e072..5b88d70 100644 --- a/clang/test/SemaOpenCL/extern.cl +++ b/clang/test/SemaOpenCL/extern.cl @@ -1,7 +1,7 @@ -// RUN: %clang_cc1 -x cl -cl-std=CL1.2 -emit-llvm %s -o - -verify | FileCheck %s +// RUN: %clang_cc1 -x cl -cl-std=CL1.2 -emit-llvm -ffake-address-space-map %s -o - -verify | FileCheck %s // expected-no-diagnostics -// CHECK: @foo = external global float +// CHECK: @foo = external addrspace(3) global float extern constant float foo; kernel void test(global float* buf) {