aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/i386-pentium4-no-mull.c
blob: 0780b050bdd2f269219f1c1806c5d08754f21176 (plain)
1
2
3
4
5
6
7
8
9
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2 -march=pentium4" } */
/* { dg-final { scan-assembler-not "imull" } } */

/* Should be done not using imull.  */
int t(int x)
{
  return x*29;
}