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

From-SVN: r188716
This commit is contained in:
Uros Bizjak 2012-06-18 00:09:40 +02:00
parent 9fd814b02d
commit f51ff4dd6e
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ void f (void)
{
int tabs[1024], tabcount;
for (tabcount = 1; tabcount <= 1024; tabcount += 7)
for (tabcount = 1; tabcount <= 1024; tabcount += 1023)
{
int i;
for (i = 0; i < 1024; i++)