[AArch64/arm] PR testsuite/85326 Avoid C++ tests when C++ compiler not present
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / ldp_stp_unaligned_2.c
blob1e46755a39a0b97fa7af704086f82ffd5a216fb4
1 /* { dg-options "-O2 -fomit-frame-pointer" } */
3 /* Check that we split unaligned LDP/STP into base and aligned offset. */
5 typedef struct
7 int a, b, c, d, e;
8 } S;
10 void foo (S *);
12 void test (int x)
14 S s = { .a = x };
15 foo (&s);
18 /* { dg-final { scan-assembler-not "mov\tx\[0-9\]+, sp" } } */