blob: 753fe9a0f91069d8bc9ba3bca3f02953e0d69e0f [file] [log] [blame]
/* Test generation of machhw on 405. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O2 -mcpu=405" } */
/* { dg-final { scan-assembler "machhw " } } */
int
f(int a, int b, int c)
{
a += (b >> 16) * (c >> 16);
return a;
}