1/* { dg-do compile } */
2/* { dg-require-effective-target ilp32 } */
3/* { dg-skip-if "" { i?86-*-* x86_64-*-* } { "-march=*" } { "-march=pentium4" } } */
4/* { dg-options "-O2 -march=pentium4" } */
5/* { dg-final { scan-assembler-not "imull" } } */
6
7/* Should be done not using imull.  */
8int t(int x)
9{
10  return x*29;
11}
12