Commit 5363d9d9 by Jeff Law Committed by Jeff Law

re PR middle-end/77766 (wrong code at -O2 and -O3 in 64-bit mode on…

re PR middle-end/77766 (wrong code at -O2 and -O3 in 64-bit mode on x86_64-linux-gnu (executable hangs))

	PR tree-optimization/77766
	PR tree-optimization/78856
	* gcc.c-torture/execute/pr77766.c: New test.

From-SVN: r244287
parent dc703d70
2017-01-10 Jeff Law <law@redhat.com>
PR tree-optimization/77766
PR tree-optimization/78856
* gcc.c-torture/execute/pr77766.c: New test.
2016-01-10 Richard Biener <rguenther@suse.de>
PR tree-optimization/79034
......
char a;
short b, d = 5, h;
char c[1];
int e, f = 4, g, j;
int main() {
int i;
for (; f; f = a) {
g = 0;
for (; g <= 32; ++g) {
i = 0;
for (; i < 3; i++)
while (1 > d)
if (c[b])
break;
L:
if (j)
break;
}
}
e = 0;
for (; e; e = 0) {
d++;
for (; h;)
goto L;
}
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