Commit f51ff4dd by Uros Bizjak

* gcc.target/i386/pr33329.c: Fix tabcount increase.

From-SVN: r188716
parent 9fd814b0
...@@ -7,7 +7,7 @@ void f (void) ...@@ -7,7 +7,7 @@ void f (void)
{ {
int tabs[1024], tabcount; int tabs[1024], tabcount;
for (tabcount = 1; tabcount <= 1024; tabcount += 7) for (tabcount = 1; tabcount <= 1024; tabcount += 1023)
{ {
int i; int i;
for (i = 0; i < 1024; i++) for (i = 0; i < 1024; i++)
......
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