blob: c064a9e04a62d8db25d666c790cb4dbefac969df [file] [log] [blame]
/* Test generation of mullhwu. on 440. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O2 -mdejagnu-cpu=440" } */
/* { dg-final { scan-assembler "mullhwu\\. " } } */
unsigned int
f(unsigned int b, unsigned int c)
{
unsigned int a = (unsigned short)b * (unsigned short)c;
if (!a)
return 10;
return a;
}