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