c++: normalizing ttp constraints [PR115656]
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / 405-mulhhw-2.c
blob9c53a9e3de9c5a0986f5d7710bf7928d4d2e86d7
1 /* Test generation of mulhhw. on 405. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-require-effective-target ilp32 } */
5 /* { dg-options "-O2 -mdejagnu-cpu=405" } */
7 /* { dg-final { scan-assembler "mulhhw\\. " } } */
9 int
10 f(int b, int c)
12 int a = (b >> 16) * (c >> 16);
13 if (!a)
14 return 10;
15 return a;