blob: 0da9e50f5a1cbe0a91bcc6ffb3c1cff325d2855b [file] [log] [blame]
Richard Trieu4e938df2011-06-17 20:35:48 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wnull-arithmetic %s
Richard Trieu3e95ba92011-06-16 21:36:56 +00002#define NULL __null
3
4@interface X
5@end
6
7void f() {
8 bool b;
9 X *d;
10 b = d < NULL || NULL < d || d > NULL || NULL > d;
11 b = d <= NULL || NULL <= d || d >= NULL || NULL >= d;
12 b = d == NULL || NULL == d || d != NULL || NULL != d;
13}