[PR81647][AARCH64] Fix handling of Unordered Comparisons in aarch64-simd.md
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / fuse-caller-save.c
blobbfedc94c33ac31e2ae5570ded59a107fec7cd12b
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fipa-ra" } */
3 /* Testing -fipa-ra optimization option. */
5 static int __attribute__((noinline))
6 bar (int x)
8 return x + 3;
11 int __attribute__((noinline))
12 foo (int y)
14 return y + bar (y);
17 int
18 main (void)
20 return !(foo (5) == 13);
23 /* { dg-final { scan-assembler-times "\\\[sp, -16\\\]!" 2 } } */
24 /* { dg-final { scan-assembler-not "\\\[sp, -32\\\]!" } } */