blob: 66efd7005836eaa61ec7152860c53c2270af2527 [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
Egor Churaev28f00aa2016-12-23 16:11:25 +00004// CHECK: @foo = external addrspace(2) 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}