• Home
  • Raw
  • Download

Lines Matching refs:bad

51   double bad;  in w_test()  local
52 …printf("%wc", bad); // expected-warning{{format specifies type 'wint_t' (aka 'int') but the argume… in w_test()
53 …printf("%wC", bad); // expected-warning{{format specifies type 'wchar_t' (aka 'unsigned short') bu… in w_test()
54 …printf("%C", bad); // expected-warning{{format specifies type 'wchar_t' (aka 'unsigned short') but… in w_test()
55 …printf("%ws", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
56 …printf("%wS", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
57 …printf("%S", bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *')… in w_test()
58 …scanf("%wc", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
59 …scanf("%wC", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
60 …scanf("%C", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *')… in w_test()
61 …scanf("%ws", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
62 …scanf("%wS", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *'… in w_test()
63 …scanf("%S", &bad); // expected-warning{{format specifies type 'wchar_t *' (aka 'unsigned short *')… in w_test()
68 double bad; in h_test() local
69 …printf("%hc", bad); // expected-warning{{format specifies type 'int' but the argument has type 'do… in h_test()
70 …printf("%hC", bad); // expected-warning{{format specifies type 'int' but the argument has type 'do… in h_test()
71 …printf("%hs", bad); // expected-warning{{format specifies type 'char *' but the argument has type … in h_test()
72 …printf("%hS", bad); // expected-warning{{format specifies type 'char *' but the argument has type … in h_test()
73 …scanf("%hc", &bad); // expected-warning{{format specifies type 'char *' but the argument has type … in h_test()
74 …scanf("%hC", &bad); // expected-warning{{format specifies type 'char *' but the argument has type … in h_test()
75 …scanf("%hs", &bad); // expected-warning{{format specifies type 'char *' but the argument has type … in h_test()
76 …scanf("%hS", &bad); // expected-warning{{format specifies type 'char *' but the argument has type … in h_test()