
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
32 lines
1.0 KiB
Common Lisp
32 lines
1.0 KiB
Common Lisp
// RUN: %clang_cc1 -verify %s
|
|
|
|
kernel void no_ptrptr(global int **i) { } // expected-error{{kernel parameter cannot be declared as a pointer to a pointer}}
|
|
|
|
__kernel void no_privateptr(__private int *i) { } // expected-error {{kernel parameter cannot be declared as a pointer to the __private address space}}
|
|
|
|
__kernel void no_privatearray(__private int i[]) { } // expected-error {{kernel parameter cannot be declared as a pointer to the __private address space}}
|
|
|
|
kernel int bar() { // expected-error {{kernel must have void return type}}
|
|
return 6;
|
|
}
|
|
|
|
kernel void main() { // expected-error {{kernel cannot be called 'main'}}
|
|
|
|
}
|
|
|
|
int main() { // expected-error {{function cannot be called 'main'}}
|
|
return 0;
|
|
}
|
|
|
|
int* global x(int* x) { // expected-error {{return value cannot be qualified with address space}}
|
|
return x + 1;
|
|
}
|
|
|
|
int* local x(int* x) { // expected-error {{return value cannot be qualified with address space}}
|
|
return x + 1;
|
|
}
|
|
|
|
int* constant x(int* x) { // expected-error {{return value cannot be qualified with address space}}
|
|
return x + 1;
|
|
}
|