blob: 507736b8c559188291ecfff79798612e93a74f47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Test generation of machhwu on 405. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O2 -mdejagnu-cpu=405" } */
/* { dg-final { scan-assembler "machhwu " } } */
unsigned int
f(unsigned int a, unsigned int b, unsigned int c)
{
a += (b >> 16) * (c >> 16);
return a;
}
|