blob: 93bc9f3901a3b06738111ec4b8510c88a853ca68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Test generation of mullhwu. 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 "mullhwu\\. " } } */
unsigned int
f(unsigned int b, unsigned int c)
{
unsigned int a = (unsigned short)b * (unsigned short)c;
if (!a)
return 10;
return a;
}
|