diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-03-15 01:00:38 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-03-15 01:00:38 +0000 |
commit | 9ca33fd56720112bcc4bccb8aa6107abbb68cae3 (patch) | |
tree | 5b059aa547b1b48a1ce20994614e0b91d6ac605f /test/SemaCXX/conversion.cpp | |
parent | d75fb492f7616046797bfe5353e9478d8e25628e (diff) |
Revert r152745 as it's breaking the internal buildbots.
Abbreviated commit message:
Provide -Wnull-conversion separately from -Wconversion.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152765 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaCXX/conversion.cpp')
-rw-r--r-- | test/SemaCXX/conversion.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/SemaCXX/conversion.cpp b/test/SemaCXX/conversion.cpp index d9ba07ab5b..b069abc263 100644 --- a/test/SemaCXX/conversion.cpp +++ b/test/SemaCXX/conversion.cpp @@ -53,14 +53,10 @@ namespace test2 { }; } -// This file tests -Wnull-conversion, a subcategory of -Wconversion -// which is on by default. - void test3() { int a = NULL; // expected-warning {{implicit conversion of NULL constant to integer}} int b; b = NULL; // expected-warning {{implicit conversion of NULL constant to integer}} - long l = NULL; // FIXME: this should also warn, but currently does not if sizeof(NULL)==sizeof(inttype) int c = ((((NULL)))); // expected-warning {{implicit conversion of NULL constant to integer}} int d; d = ((((NULL)))); // expected-warning {{implicit conversion of NULL constant to integer}} |