1 /* { dg-do compile { target *-*-darwin* } } */
2 /* { dg-options "-O0 -gdwarf-2 -dA" } */
3 /* { dg-skip-if "Unmatchable assembly" { mmix-*-* } } */
4 /* { dg-final { scan-assembler "__debug_pubtypes" } } */
5 /* { dg-final { scan-assembler "long+\[ \t\]+0x13b+\[ \t\]+\[#;]+\[ \t\]+Pub Info Length" } } */
6 /* { dg-final { scan-assembler "used_struct\\\\0\"+\[ \t\]+\[#;]+\[ \t\]+external name" } } */
7 /* { dg-final { scan-assembler-not "unused_struct\\\\0\"+\[ \t\]+\[#;]+\[ \t\]+external name" } } */
8 /* { dg-final { scan-assembler-not "\"list_name_type\\\\0\"+\[ \t\]+\[#;]+\[ \t\]+external name" } } */
26 struct unused_struct
*next
;
30 foo (struct used_struct
*list
)
41 enum list_name_type
*enum_list
;
43 enum_list
= (enum list_name_type
*) malloc (10 * sizeof (enum list_name_type
));
45 for (i
= 0; i
< 10; i
++)
47 if (strncmp (list
[i
].name
, "Alice", 5) == 0)
49 enum_list
[i
] = girl_name
;
52 else if (strncmp (list
[i
].name
, "David", 5) == 0)
54 enum_list
[i
] = boy_name
;
58 enum_list
[i
] = unknown
;
64 main (int argc
, char **argv
)
67 struct used_struct
*my_list
;
69 my_list
= (struct used_struct
*) malloc (10 * sizeof (struct used_struct
));
71 for (i
= 0; i
< 10; i
++)
74 my_list
[i
].name
= (char *) malloc (11);
75 sprintf (my_list
[i
].name
, "Alice_%d", i
);
80 for (i
= 0; i
< 10; i
++)
81 fprintf (stdout
, "Key: %d, Name: %s\n", my_list
[i
].key
, my_list
[i
].name
);