array-parameters.cl 225 B

123456
  1. // RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only
  2. // expected-no-diagnostics
  3. kernel void foo(global int a[], local int b[], constant int c[4]) { }
  4. void bar(global int a[], local int b[], constant int c[4], int d[]) { }