blob: e0232bf3c872d8c74ae681f5cb767b3cb1f53eba [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify -Wnull-arithmetic %s
// expected-no-diagnostics
#define NULL __null
@interface X
@end
void f() {
bool b;
X *d;
b = d < NULL || NULL < d || d > NULL || NULL > d;
b = d <= NULL || NULL <= d || d >= NULL || NULL >= d;
b = d == NULL || NULL == d || d != NULL || NULL != d;
}