OSDN Git Service

* gcc.dg/altivec-21.c: Use dg-error only for ilp32.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / i386-pentium4-not-mull.c
1 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
2 /* { dg-options "-O2 -march=pentium4" { target i?86-*-* } } */
3 /* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
4 /* { dg-options "-O2 -march=pentium4 -m32" { target x86_64-*-* } } */
5 /* { dg-final { scan-assembler-not "imull" } } */
6
7 /* Should be done not using imull.  */
8 int t(int x)
9 {
10   return x*29;
11 }