blob: b2e4857e28daaf22acc25bf669e7a2267751b549 [file] [log] [blame]
Tom Stellard2391c352014-10-16 15:29:17 +00001// RUN: %clang_cc1 -x cl -cl-std=CL1.2 -emit-llvm -ffake-address-space-map %s -o - -verify | FileCheck %s
Pekka Jaaskelainen17b91892014-01-23 16:36:09 +00002// expected-no-diagnostics
3
Tom Stellardade13b22014-10-16 15:29:19 +00004// CHECK: @foo = external addrspace(3) constant float
Pekka Jaaskelainen17b91892014-01-23 16:36:09 +00005extern constant float foo;
6
7kernel void test(global float* buf) {
8 buf[0] += foo;
9}