2009-03-24 10:24:46 +08:00
|
|
|
// RUN: clang-cc -fsyntax-only %s -verify
|
2007-10-29 12:26:44 +08:00
|
|
|
|
|
|
|
typedef struct { unsigned long bits[(((1) + (64) - 1) / (64))]; } cpumask_t;
|
|
|
|
cpumask_t x;
|
|
|
|
void foo() {
|
|
|
|
(void)x;
|
|
|
|
}
|
2009-05-01 10:23:58 +08:00
|
|
|
void bar() {
|
|
|
|
char* a;
|
|
|
|
double b;
|
|
|
|
b = (double)a; // expected-error {{pointer cannot be cast to type}}
|
|
|
|
a = (char*)b; // expected-error {{cannot be cast to a pointer type}}
|
|
|
|
}
|
2007-10-29 12:26:44 +08:00
|
|
|
|
2009-11-24 03:51:43 +08:00
|
|
|
long bar1(long *next) {
|
|
|
|
return (long)(*next)++;
|
|
|
|
}
|
|
|
|
|