blob: 4267e2c2b3523c19110cef428fd89b460dc053c4 [file] [log] [blame]
Douglas Gregor025452f2009-04-17 00:04:06 +00001// Header for PCH test stmts.c
2
3void f0(int x) {
4 // NullStmt
5 ;
6 // IfStmt
7 if (x) {
8 } else if (x + 1) {
9 }
10
11 switch (x) {
12 case 0:
13 x = 17;
14 break;
15
16 case 1:
17 break;
18
19 default:
Douglas Gregor0de9d882009-04-17 16:34:57 +000020 switch (x >> 1) {
21 case 7:
22 // fall through
23 case 9:
24 break;
25 }
26 x += 2;
Douglas Gregor025452f2009-04-17 00:04:06 +000027 break;
28 }
Douglas Gregord921cf92009-04-17 00:16:09 +000029
30 while (x > 20) {
31 if (x > 30) {
32 --x;
33 continue;
Douglas Gregor67d82492009-04-17 00:29:51 +000034 } else if (x < 5)
35 break;
Douglas Gregor1de05fe2009-04-17 18:18:49 +000036 else
37 goto done;
Douglas Gregord921cf92009-04-17 00:16:09 +000038 }
Douglas Gregor67d82492009-04-17 00:29:51 +000039
40 do {
41 x++;
42 } while (x < 10);
43
Douglas Gregor1de05fe2009-04-17 18:18:49 +000044 almost_done:
Douglas Gregor84f21702009-04-17 16:55:36 +000045 for (int y = x; y < 20; ++y) {
46 if (x + y == 12)
Douglas Gregor0de9d882009-04-17 16:34:57 +000047 return;
Douglas Gregor1de05fe2009-04-17 18:18:49 +000048 else if (x - y == 7)
49 goto almost_done;
Douglas Gregor0de9d882009-04-17 16:34:57 +000050 }
Douglas Gregor84f21702009-04-17 16:55:36 +000051
Douglas Gregor1de05fe2009-04-17 18:18:49 +000052 done:
53 x = x + 2;
54
Douglas Gregor84f21702009-04-17 16:55:36 +000055 int z = x, *y, j = 5;
Douglas Gregor0de9d882009-04-17 16:34:57 +000056}
57
58int f1(int x) {
59 switch (x) {
60 case 17:
61 return 12;
62
63 default:
64 break;
65 }
66
Douglas Gregorba48d052009-04-22 00:21:21 +000067 // variable-length array
68 int array[x * 17 + 3];
69
Douglas Gregor0de9d882009-04-17 16:34:57 +000070 return x*2;
Douglas Gregor025452f2009-04-17 00:04:06 +000071}
Douglas Gregor84f21702009-04-17 16:55:36 +000072
73const char* what_is_my_name(void) { return __func__; }
Douglas Gregor7d5c2f22009-04-17 18:58:21 +000074
75int computed_goto(int x) {
76 start:
77 x = x << 1;
78 void *location = &&start;
79
80 if (x > 17)
81 location = &&done;
82
83 while (x > 12) {
84 --x;
85 if (x == 15)
86 goto *location;
87 }
88
89 done:
90 return 5;
91}
Douglas Gregor6a2dd552009-04-17 19:05:30 +000092
93#define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; })
94int weird_max(int x, int y) {
95 return maxint(++x, --y);
96}