summaryrefslogtreecommitdiffstats
path: root/test/SemaOpenCL/extern.cl
blob: ee5e07237f06dcc30b25973a83dbb4747983e5ea (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -x cl -cl-std=CL1.2 -emit-llvm %s -o - -verify | FileCheck %s
// expected-no-diagnostics

// CHECK: @foo = external global float
extern constant float foo;

kernel void test(global float* buf) {
  buf[0] += foo;
}
OpenPOWER on IntegriCloud