[PATCH 7/57][Arm][GAS] Add support for MVE instructions: vstr/vldr
[binutils-gdb.git] / gdb / testsuite / gdb.base / anon.c
blobca86ce5c9c8c9693b6d86e24794b347a5bcb82b4
1 /* Test of anonymous union in a struct. */
3 #include <string.h>
5 struct outer
7 int one;
8 int two;
10 struct
12 union {
13 int three : 3;
14 int four : 4;
17 union {
18 int five : 3;
19 int six : 4;
21 } data;
24 int main ()
26 struct outer val;
28 memset (&val, 0, sizeof (val));
29 val.data.six = 6;
31 return 0; /* break here */