1 // RUN: %clang_cc1 -fsyntax-only -verify -Wnull-arithmetic %s
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;