File: switch-1.c

package info (click to toggle)
llvm-toolchain-6.0 1%3A6.0.1-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 598,080 kB
  • sloc: cpp: 3,046,253; ansic: 595,057; asm: 271,965; python: 128,926; objc: 106,554; sh: 21,906; lisp: 10,191; pascal: 6,094; ml: 5,544; perl: 5,265; makefile: 2,227; cs: 2,027; xml: 686; php: 212; csh: 117
file content (59 lines) | stat: -rw-r--r-- 2,621 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-apple-darwin10 %s
// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -triple x86_64-apple-darwin10 %s
// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -triple x86_64-apple-darwin10 -std=c++98 %s
// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -triple x86_64-apple-darwin10 -std=c++11 %s
// rdar://11577384
// rdar://13423975

int f(int i) {
  switch (i) {
    case 2147483647 + 2:
#if (__cplusplus <= 199711L) // C or C++03 or earlier modes
    // expected-warning@-2 {{overflow in expression; result is -2147483647 with type 'int'}}
#else
    // expected-error@-4 {{case value is not a constant expression}} \
    // expected-note@-4 {{value 2147483649 is outside the range of representable values of type 'int'}}
#endif
      return 1;
    case 9223372036854775807L * 4:
#if (__cplusplus <= 199711L)
    // expected-warning@-2 {{overflow in expression; result is -4 with type 'long'}}
#else
    // expected-error@-4 {{case value is not a constant expression}} \
    // expected-note@-4 {{value 36893488147419103228 is outside the range of representable values of type 'long'}}
#endif
      return 2;
    case (123456 *789012) + 1:
#if (__cplusplus <= 199711L)
    // expected-warning@-2 {{overflow in expression; result is -1375982336 with type 'int'}}
#else
    // expected-error@-4 {{case value is not a constant expression}} \
    // expected-note@-4 {{value 97408265472 is outside the range of representable values of type 'int'}}
#endif
      return 3;
    case (2147483647*4)/4:
#if (__cplusplus <= 199711L)
    // expected-warning@-2 {{overflow in expression; result is -4 with type 'int'}}
#else
    // expected-error@-4 {{case value is not a constant expression}} \
    // expected-note@-4 {{value 8589934588 is outside the range of representable values of type 'int'}}
#endif
    case (2147483647*4)%4:
#if (__cplusplus <= 199711L)
    // expected-warning@-2 {{overflow in expression; result is -4 with type 'int'}}
#else
    // expected-error@-4 {{case value is not a constant expression}} \
    // expected-note@-4 {{value 8589934588 is outside the range of representable values of type 'int'}}
#endif
      return 4;
    case 2147483647:
      return 0;
  }
  return (i, 65537) * 65537; // expected-warning {{overflow in expression; result is 131073 with type 'int'}} \
			     // expected-warning {{expression result unused}}
}

// rdar://18405357
unsigned long long l = 65536 * 65536; // expected-warning {{overflow in expression; result is 0 with type 'int'}}
unsigned long long l2 = 65536 * (unsigned)65536;
unsigned long long l3 = 65536 * 65536ULL;