[PR81647][AARCH64] Fix handling of Unordered Comparisons in aarch64-simd.md
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / thunderxnoloadpair.c
blob3093ad0e1f242b0b81e7b39dab493ac6a9d37cf0
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -mcpu=thunderx" } */
4 struct noldp
6 int a, b;
7 };
10 int f(struct noldp *a)
12 return a->a + a->b;
15 /* We know the alignement of a->a to be 4 byte aligned so it is not profitable
16 to do ldp. */
17 /* { dg-final { scan-assembler-not "ldp\tw\[0-9\]+, w\[0-9\]" } } */