diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/pr26449.c')
| -rw-r--r-- | gcc/testsuite/gcc.dg/pr26449.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/pr26449.c b/gcc/testsuite/gcc.dg/pr26449.c index 1a0bdad..dc622fa 100644 --- a/gcc/testsuite/gcc.dg/pr26449.c +++ b/gcc/testsuite/gcc.dg/pr26449.c @@ -1,4 +1,5 @@ /* { dg-do compile { target i?86-*-* } } */ +/* { dg-require-effective-target ilp32 } */ /* { dg-options "-O1 -ftree-vectorize -march=pentium4 -std=c99" } */ void matmul_i4 (int bbase_yn, int xcount) @@ -9,7 +10,6 @@ void matmul_i4 (int bbase_yn, int xcount) for (x = 0; x < xcount; x++) { - dest_y[x] += abase_n[x] * bbase_yn; + dest_y[x] += abase_n[x] * bbase_yn; } } - |
