blob: 5f1f9f80b0faecfe57b323fa4313d293b4d34b24 [file] [log] [blame]
Peter Collingbournebcf909d2016-06-14 21:02:05 +00001// RUN: %clang_cc1 -x cl -cl-opt-disable -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}