• Home
  • Raw
  • Download

Lines Matching full:iso

1 // RUN: %clang_cc1 -fsyntax-only -verify -triple i386-apple-darwin9 -Wformat-non-iso -DALLOWED %s
2 // RUN: %clang_cc1 -fsyntax-only -verify -triple thumbv6-apple-ios4.0 -Wformat-non-iso -DALLOWED %s
4 // RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-mingw32 -Wformat-non-iso %s
5 // RUN: %clang_cc1 -fsyntax-only -verify -triple i686-pc-win32 -Wformat-non-iso %s
7 // RUN: %clang_cc1 -fsyntax-only -verify -triple i686-linux-gnu -Wformat-non-iso %s
8 // RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-unknown-freebsd -Wformat-non-iso %s
25 …// expected-warning@-8 {{'D' conversion specifier is not supported by ISO C}} expected-note@-8 {{d… in test()
26 …// expected-warning@-8 {{'D' conversion specifier is not supported by ISO C}} expected-note@-8 {{d… in test()
27 …// expected-warning@-8 {{'U' conversion specifier is not supported by ISO C}} expected-note@-8 {{d… in test()
28 …// expected-warning@-8 {{'U' conversion specifier is not supported by ISO C}} expected-note@-8 {{d… in test()
29 …// expected-warning@-8 {{'O' conversion specifier is not supported by ISO C}} expected-note@-8 {{d… in test()
30 …// expected-warning@-8 {{'O' conversion specifier is not supported by ISO C}} expected-note@-8 {{d… in test()
43 …printf("%hD", x); // expected-warning{{conversion specifier is not supported by ISO C}} expected-n… in testPrintf()
44 …printf("%lD", y); // expected-warning{{conversion specifier is not supported by ISO C}} expected-n… in testPrintf()
45 …printf("%hU", x); // expected-warning{{conversion specifier is not supported by ISO C}} expected-n… in testPrintf()
46 …printf("%lU", y); // expected-warning{{conversion specifier is not supported by ISO C}} expected-n… in testPrintf()
47 …printf("%hO", x); // expected-warning{{conversion specifier is not supported by ISO C}} expected-n… in testPrintf()
48 …printf("%lO", y); // expected-warning{{conversion specifier is not supported by ISO C}} expected-n… in testPrintf()
50 …printf("%+'0.5lD", y); // expected-warning{{conversion specifier is not supported by ISO C}} expec… in testPrintf()
51 …printf("% '0.5lD", y); // expected-warning{{conversion specifier is not supported by ISO C}} expec… in testPrintf()
52 …printf("%#0.5lO", y); // expected-warning{{conversion specifier is not supported by ISO C}} expect… in testPrintf()
53 …printf("%'0.5lU", y); // expected-warning{{conversion specifier is not supported by ISO C}} expect… in testPrintf()
57 …scanf("%hD", x); // expected-warning{{conversion specifier is not supported by ISO C}} expected-no… in testScanf()
58 …scanf("%lD", y); // expected-warning{{conversion specifier is not supported by ISO C}} expected-no… in testScanf()
59 …scanf("%hU", x); // expected-warning{{conversion specifier is not supported by ISO C}} expected-no… in testScanf()
60 …scanf("%lU", y); // expected-warning{{conversion specifier is not supported by ISO C}} expected-no… in testScanf()
61 …scanf("%hO", x); // expected-warning{{conversion specifier is not supported by ISO C}} expected-no… in testScanf()
62 …scanf("%lO", y); // expected-warning{{conversion specifier is not supported by ISO C}} expected-no… in testScanf()