[PR81647][AARCH64] Fix handling of Unordered Comparisons in aarch64-simd.md
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / target_attr_14.c
blob916b5a6f98d08dbe6466e9890948a03f1ff1c9a0
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -save-temps" } */
4 /* Inlining non-strict-align functions into strict-align
5 functions is allowed. */
7 static int
8 bar (int a)
10 return a - 6;
13 __attribute__ ((target ("strict-align")))
14 int
15 bam (int a)
17 return a - bar (a);
20 /* { dg-final { scan-assembler-not "bl.*bar" } } */