Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.target / powerpc / 405-mulhhw-2.c
blob9be7eaf48039519eeb2647e538b70a014a14ee62
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 -mcpu=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;