Commit b2f2a1c9 by Markus Trippelsdorf

Fix formating of gcc.dg/torture/pr64326.c

From-SVN: r220586
parent 11f3ac49
......@@ -6,25 +6,24 @@ char g;
int
fn1 ()
{
return d && c ? 0 : 1;
return d && c ? 0 : 1;
}
int
fn2 ()
{
int h;
for (;;)
for (; e;)
{
int i, j;
h = a ? 1 : b;
if (h || fn1 () ^ g - 682)
{
for (i = 0; i < 5; i++)
for (j = 0; j < 2; j++)
f[i][j] = 0;
return 0;
}
}
int h;
for (;;)
for (; e;)
{
int i, j;
h = a ? 1 : b;
if (h || fn1 () ^ g - 682)
{
for (i = 0; i < 5; i++)
for (j = 0; j < 2; j++)
f[i][j] = 0;
return 0;
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment