[PR81647][AARCH64] Fix handling of Unordered Comparisons in aarch64-simd.md
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / volatile-bitfields-1.c
blobc69d3a358b44e35239bc42d65e921260927123d6
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 typedef struct {
5 char a:1;
6 char b:7;
7 int c;
8 } BitStruct;
10 volatile BitStruct bits;
12 int foo ()
14 return bits.b;
17 /* { dg-final { scan-assembler "ldrb\[\\t \]+\[^\n\]*,\[\\t \]*\\\[\[^\n\]*\\\]" } } */