Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjCXX / null_objc_pointer.mm
blob2be397e31ee9efa2f06ed197ac01052028ade238
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wnull-arithmetic %s
2 #define NULL __null
4 @interface X
5 @end
7 void f() {
8   bool b;
9   X *d;
10   b = d < NULL || NULL < d || d > NULL || NULL > d; // expected-error 4{{ordered comparison between pointer and zero}}
11   b = d <= NULL || NULL <= d || d >= NULL || NULL >= d; // expected-error 4{{ordered comparison between pointer and zero}}
12   b = d == NULL || NULL == d || d != NULL || NULL != d;