2011-10-27 12:29:09 +04:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -verify %s
|
|
|
|
|
|
|
|
int printf(char const *, ...);
|
|
|
|
|
|
|
|
void test(void) {
|
|
|
|
// size_t
|
2011-12-15 04:38:15 +04:00
|
|
|
printf("%zu", (double)42); // expected-warning {{conversion specifies type 'size_t' (aka 'unsigned long') but the argument has type 'double'}}
|
2011-10-27 12:29:09 +04:00
|
|
|
|
|
|
|
// intmax_t / uintmax_t
|
2011-12-15 04:38:15 +04:00
|
|
|
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'}}
|
2011-10-27 12:29:09 +04:00
|
|
|
|
|
|
|
// ptrdiff_t
|
2011-12-15 04:38:15 +04:00
|
|
|
printf("%td", (double)42); // expected-warning {{conversion specifies type 'ptrdiff_t' (aka 'long') but the argument has type 'double'}}
|
2011-10-27 12:29:09 +04:00
|
|
|
}
|