diff options
| -rw-r--r-- | gcc/testsuite/gcc.target/i386/pr33329.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/i386/pr33329.c b/gcc/testsuite/gcc.target/i386/pr33329.c index e7ffb88..56092fe 100644 --- a/gcc/testsuite/gcc.target/i386/pr33329.c +++ b/gcc/testsuite/gcc.target/i386/pr33329.c @@ -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++) |
