• Home
  • Raw
  • Download

Lines Matching full:comparison

9 …if (a == 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 wit…  in main()
11 …if (a != 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
13 …if (a < 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
15 …if (a <= 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 wi… in main()
17 …if (a > 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
19 …if (a >= 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 wi… in main()
22 …if (0x1234567812345678L == a) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
24 …if (0x1234567812345678L != a) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
26 …if (0x1234567812345678L < a) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
28 …if (0x1234567812345678L <= a) // expected-warning {{comparison of constant 1311768465173141112 wi… in main()
30 …if (0x1234567812345678L > a) // expected-warning {{comparison of constant 1311768465173141112 with… in main()
32 …if (0x1234567812345678L >= a) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
34 …if (a == 0x1234567812345678LL) // expected-warning {{comparison of constant 1311768465173141112 wi… in main()
36 …if (a == -0x1234567812345678L) // expected-warning {{comparison of constant -1311768465173141112 w… in main()
38 …if (a < -0x1234567812345678L) // expected-warning {{comparison of constant -1311768465173141112 wi… in main()
40 …if (a > -0x1234567812345678L) // expected-warning {{comparison of constant -1311768465173141112 wi… in main()
42 …if (a <= -0x1234567812345678L) // expected-warning {{comparison of constant -1311768465173141112 w… in main()
44 …if (a >= -0x1234567812345678L) // expected-warning {{comparison of constant -1311768465173141112 w… in main()
52 …if (s == 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
54 …if (s != 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
56 …if (s < 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with… in main()
58 …if (s <= 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
60 …if (s > 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 with… in main()
62 …if (s >= 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
65 …if (0x1234567812345678L == s) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
67 …if (0x1234567812345678L != s) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
69 …if (0x1234567812345678L < s) // expected-warning {{comparison of constant 1311768465173141112 with… in main()
71 …if (0x1234567812345678L <= s) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
73 …if (0x1234567812345678L > s) // expected-warning {{comparison of constant 1311768465173141112 with… in main()
75 …if (0x1234567812345678L >= s) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()
145 …if (e == 0x1234567812345678L) // expected-warning {{comparison of constant 1311768465173141112 wit… in main()