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