]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.target/powerpc/405-maclhw-2.c
b7950abc36069e9ddcbc0e0984c8aea71a23e492
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / powerpc / 405-maclhw-2.c
1 /* Test generation of maclhw. 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" } */
6
7 /* { dg-final { scan-assembler "maclhw\\. " } } */
8
9 int
10 f(int a, int b, int c)
11 {
12 a += (short)b * (short)c;
13 if (!a)
14 return 10;
15 return a;
16 }