1 // Header for PCH test stmts.c
45 for (int y
= x
; y
< 20; ++y
) {
67 // variable-length array
68 int array
[x
* 17 + 3];
73 const char* what_is_my_name(void) { return __func__
; }
75 int computed_goto(int x
) {
78 void *location
= &&start
;
93 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; })
94 int weird_max(int x
, int y
) {
95 return maxint(++x
, --y
);