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