* config/i386/avx512fintrin.h (_mm512_set_epi16, _mm512_set_epi8,
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / thunderxloadpair.c
blob14b1f736093ef18256fe54a791ae361c81c9678f
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -mcpu=thunderx" } */
4 struct ldp
6 long long c;
7 int a, b;
8 };
11 int f(struct ldp *a)
13 return a->a + a->b;
17 /* We know the alignement of a->a to be 8 byte aligned so it is profitable
18 to do ldp. */
19 /* { dg-final { scan-assembler-times "ldp\tw\[0-9\]+, w\[0-9\]" 1 } } */