diff options
author | Hans Wennborg <hans@hanshq.net> | 2011-12-07 10:33:11 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2011-12-07 10:33:11 +0000 |
commit | 772e9270f666afef722292b6aaf3791feb8fcc1f (patch) | |
tree | e457b5a164801eb7e81c3a5d014b11f463126556 /clang/test/Sema/format-strings-size_t.c | |
parent | 1d578e8835282f5aac1d2fef3801e38c7a8fc870 (diff) | |
download | bcm5719-llvm-772e9270f666afef722292b6aaf3791feb8fcc1f.tar.gz bcm5719-llvm-772e9270f666afef722292b6aaf3791feb8fcc1f.zip |
Make printf warnings refer to intmax_t et al. by name
in addition to underlying type.
For example, the warning for printf("%zu", 42.0);
changes from "conversion specifies type 'unsigned long'" to "conversion
specifies type 'size_t' (aka 'unsigned long')"
(This is a second attempt after r145697, which got reverted.)
llvm-svn: 146032
Diffstat (limited to 'clang/test/Sema/format-strings-size_t.c')
-rw-r--r-- | clang/test/Sema/format-strings-size_t.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/Sema/format-strings-size_t.c b/clang/test/Sema/format-strings-size_t.c index c86a9e44287..56b20b1b7b7 100644 --- a/clang/test/Sema/format-strings-size_t.c +++ b/clang/test/Sema/format-strings-size_t.c @@ -4,12 +4,12 @@ int printf(char const *, ...); void test(void) { // size_t - printf("%zu", (double)42); // expected-warning {{conversion specifies type 'unsigned long' but the argument has type 'double''}} + printf("%zu", (double)42); // expected-warning {{conversion specifies type 'size_t' (aka 'unsigned long') but the argument has type 'double''}} // intmax_t / uintmax_t - printf("%jd", (double)42); // expected-warning {{conversion specifies type 'long' but the argument has type 'double''}} - printf("%ju", (double)42); // expected-warning {{conversion specifies type 'unsigned long' but the argument has type 'double''}} + printf("%jd", (double)42); // expected-warning {{conversion specifies type 'intmax_t' (aka 'long') but the argument has type 'double''}} + printf("%ju", (double)42); // expected-warning {{conversion specifies type 'uintmax_t' (aka 'unsigned long') but the argument has type 'double''}} // ptrdiff_t - printf("%td", (double)42); // expected-warning {{conversion specifies type 'long' but the argument has type 'double''}} + printf("%td", (double)42); // expected-warning {{conversion specifies type 'ptrdiff_t' (aka 'long') but the argument has type 'double''}} } |