1 /* { dg-do compile } */
2 /* { dg-options "-O2 -save-temps" } */
3
4 /* Inlining non-strict-align functions into strict-align
5 functions is allowed. */
6
7 static int
8 bar (int a)
9 {
10 return a - 6;
11 }
12
13 __attribute__ ((target ("strict-align")))
14 int
15 bam (int a)
16 {
17 return a - bar (a);
18 }
19
20 /* { dg-final { scan-assembler-not "bl.*bar" } } */