blob: 1b30c0298c01fdb3ccede50242a382159460eff9 [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;
return a;
}