blob: d2b57bd08cfcbe5c4e70f00d36a103625911c86b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Test generation of mullhwu. on 405. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O2 -mdejagnu-cpu=405" } */
/* { 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;
}
|