2012-03-15 12:50:32 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-unknown %s -Wno-null-conversion -fsyntax-only -verify
|
|
|
|
// RUN: %clang_cc1 -triple i686-unknown-unknown %s -Wno-null-conversion -fsyntax-only -verify
|
2008-12-02 01:31:21 +08:00
|
|
|
|
|
|
|
void f() {
|
|
|
|
int* i = __null;
|
|
|
|
i = __null;
|
|
|
|
int i2 = __null;
|
|
|
|
|
|
|
|
// Verify statically that __null is the right size
|
|
|
|
int a[sizeof(typeof(__null)) == sizeof(void*)? 1 : -1];
|
2008-12-22 06:39:40 +08:00
|
|
|
|
|
|
|
// Verify that null is evaluated as 0.
|
|
|
|
int b[__null ? -1 : 1];
|
2008-12-02 01:31:21 +08:00
|
|
|
}
|
2011-02-19 07:54:50 +08:00
|
|
|
|
|
|
|
struct A {};
|
|
|
|
|
|
|
|
void g() {
|
|
|
|
(void)(0 ? __null : A()); // expected-error {{non-pointer operand type 'A' incompatible with NULL}}
|
|
|
|
(void)(0 ? A(): __null); // expected-error {{non-pointer operand type 'A' incompatible with NULL}}
|
|
|
|
}
|