This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
Added return value to append_to_statement_list, so now it's:>> + tree expr = NULL; >> + append_to_statement_list (*block,&expr); >> + *block = expr;> > Rather than doing this dance here, I think it would be better to enhance > append_to_statement_list to handle the case of the list argument being a > non-list. >
*block = append_to_statement_list (*block, NULL);
+ *block = append_to_statement_list (*block, NULL);
+ append_to_statement_list (build1 (LABEL_EXPR, void_type_node, label), + block);
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |