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\]+0x6a+\[ \t\]+\[#;]+\[ \t\]+Length of Public Type Names Info" } } */
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" } } */
25 struct unused_struct
*next
;
29 foo (struct used_struct
*list
)
40 enum list_name_type
*enum_list
;
42 enum_list
= (enum list_name_type
*) malloc (10 * sizeof (enum list_name_type
));
44 for (i
= 0; i
< 10; i
++)
46 if (strncmp (list
[i
].name
, "Alice", 5) == 0)
48 enum_list
[i
] = girl_name
;
51 else if (strncmp (list
[i
].name
, "David", 5) == 0)
53 enum_list
[i
] = boy_name
;
57 enum_list
[i
] = unknown
;
63 main (int argc
, char **argv
)
66 struct used_struct
*my_list
;
68 my_list
= (struct used_struct
*) malloc (10 * sizeof (struct used_struct
));
70 for (i
= 0; i
< 10; i
++)
73 my_list
[i
].name
= (char *) malloc (11);
74 sprintf (my_list
[i
].name
, "Alice_%d", i
);
79 for (i
= 0; i
< 10; i
++)
80 fprintf (stdout
, "Key: %d, Name: %s\n", my_list
[i
].key
, my_list
[i
].name
);