/* Testing return address signing. */ /* { dg-do run } */ /* { dg-require-effective-target mbranch_protection_ok } */ /* { dg-require-effective-target arm_pacbti_hw } */ /* { dg-options "-march=armv8.1-m.main+pacbti+fp -mbranch-protection=pac-ret+leaf -mthumb -mfloat-abi=hard --save-temps -O0" } */ #include int __attribute__((noinline)) foo1 (int a, int b) { int x = 4; int foo2 (int a, int b) { return a + b + x; } return foo2 (a, b); } int main (void) { if (foo1 (1, 2) != 7) abort (); return 0; } /* { dg-final { scan-assembler-times "pac\tip, lr, sp" 3 } } */ /* { dg-final { scan-assembler-times "aut\tip, lr, sp" 3 } } */ /* { dg-final { scan-assembler-not "\tbti" } } */