[PR81647][AARCH64] Fix handling of Unordered Comparisons in aarch64-simd.md
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / asm-1.c
blobbdfa4504f612621dc4478d4f363038c844bc43d2
2 /* { dg-do compile } */
3 /* { dg-options "-O3" } */
5 typedef struct
7 int i;
8 int y;
9 } __attribute__ ((aligned (16))) struct64_t;
11 void foo ()
13 struct64_t tmp;
14 asm volatile ("ldr q0, %[value]" : : [value]"m"(tmp));