rs6000.c (rs6000_function_arg): Remove CALL_LIBCALL when returning call_cookie.
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / 440-mulhhw-1.c
blob4b27396edaf6f4bafc09f03b80a419872ee0b721
1 /* Test generation of mulhhw on 440. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-require-effective-target ilp32 } */
5 /* { dg-options "-O2 -mcpu=440" } */
7 /* { dg-final { scan-assembler "mulhhw " } } */
9 int
10 f(int b, int c)
12 int a = (b >> 16) * (c >> 16);
13 return a;