diff options
author | Anders Carlsson <andersca@mac.com> | 2007-10-10 20:50:11 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2007-10-10 20:50:11 +0000 |
commit | db83d77c78772b0188495093186b88b4ad2ea857 (patch) | |
tree | 11dcc7eb63e157343e45ca1749aa4e7d4db94f30 /clang/test/Parser/pointer_promotion.c | |
parent | 4479f86c0fa9853520f63d10d8e47c389dc32be9 (diff) | |
download | bcm5719-llvm-db83d77c78772b0188495093186b88b4ad2ea857.tar.gz bcm5719-llvm-db83d77c78772b0188495093186b88b4ad2ea857.zip |
Emit a warning when the body of an if block is a NullStmt.
llvm-svn: 42840
Diffstat (limited to 'clang/test/Parser/pointer_promotion.c')
-rw-r--r-- | clang/test/Parser/pointer_promotion.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/Parser/pointer_promotion.c b/clang/test/Parser/pointer_promotion.c index 9d9a5265676..8d2e6e7a80c 100644 --- a/clang/test/Parser/pointer_promotion.c +++ b/clang/test/Parser/pointer_promotion.c @@ -8,11 +8,11 @@ int test() { struct bar *bp; short sint = 7; - if (ip < cp) ; // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}} - if (cp < fp) ; // expected-warning {{comparison of distinct pointer types ('char *' and 'struct foo *')}} - if (fp < bp) ; // expected-warning {{comparison of distinct pointer types ('struct foo *' and 'struct bar *')}} - if (ip < 7) ; // expected-warning {{comparison between pointer and integer ('int *' and 'int')}} - if (sint < ip) ; // expected-warning {{comparison between pointer and integer ('int' and 'int *')}} - if (ip == cp) ; // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}} + if (ip < cp) {} // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}} + if (cp < fp) {} // expected-warning {{comparison of distinct pointer types ('char *' and 'struct foo *')}} + if (fp < bp) {} // expected-warning {{comparison of distinct pointer types ('struct foo *' and 'struct bar *')}} + if (ip < 7) {} // expected-warning {{comparison between pointer and integer ('int *' and 'int')}} + if (sint < ip) {} // expected-warning {{comparison between pointer and integer ('int' and 'int *')}} + if (ip == cp) {} // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}} } |