aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/991008-1.c
blob: ba668fe25b2c77890adccdded2764013f7ae9ee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
typedef struct {
    int x;
} FILE;
extern void fputs (const char *, FILE *);

int mView;
void foo (FILE * out, int aIndent)
{
    if (0 != mView) {
	aIndent++;
	aIndent--;
	{
	    int __t = aIndent;
	    while (--__t >= 0)
		fputs ("  ", out);
	}

    } {
	int __t = aIndent;
	while (--__t >= 0)
	    fputs ("  ", out);
    }
}