@@ -266,8 +266,7 @@ typedef struct {
266266typedef struct ref_block ref_block_t ;
267267
268268struct ref_block_list {
269- ref_block_t * head ;
270- ref_block_t * tail ;
269+ ref_block_t * head , * tail ;
271270};
272271
273272typedef struct ref_block_list ref_block_list_t ;
@@ -276,8 +275,7 @@ typedef struct insn insn_t;
276275
277276typedef struct use_chain_node {
278277 insn_t * insn ;
279- struct use_chain_node * next ;
280- struct use_chain_node * prev ;
278+ struct use_chain_node * next , * prev ;
281279} use_chain_t ;
282280
283281typedef struct var var_t ;
@@ -306,8 +304,7 @@ struct var {
306304 int subscripts_idx ;
307305 rename_t rename ;
308306 ref_block_list_t ref_block_list ; /* blocks which kill variable */
309- use_chain_t * users_head ;
310- use_chain_t * users_tail ;
307+ use_chain_t * users_head , * users_tail ;
311308 struct insn * last_assign ;
312309 int consumed ;
313310 bool is_ternary_ret ;
@@ -408,8 +405,7 @@ struct phi_operand {
408405typedef struct phi_operand phi_operand_t ;
409406
410407struct insn {
411- struct insn * next ;
412- struct insn * prev ;
408+ struct insn * next , * prev ;
413409 int idx ;
414410 opcode_t opcode ;
415411 var_t * rd ;
@@ -423,13 +419,11 @@ struct insn {
423419};
424420
425421typedef struct {
426- insn_t * head ;
427- insn_t * tail ;
422+ insn_t * head , * tail ;
428423} insn_list_t ;
429424
430425typedef struct {
431- ph2_ir_t * head ;
432- ph2_ir_t * tail ;
426+ ph2_ir_t * head , * tail ;
433427} ph2_ir_list_t ;
434428
435429typedef enum { NEXT , ELSE , THEN } bb_connection_type_t ;
@@ -448,8 +442,7 @@ struct symbol {
448442typedef struct symbol symbol_t ;
449443
450444typedef struct {
451- symbol_t * head ;
452- symbol_t * tail ;
445+ symbol_t * head , * tail ;
453446} symbol_list_t ;
454447
455448struct basic_block {
@@ -519,8 +512,7 @@ struct func {
519512};
520513
521514typedef struct {
522- func_t * head ;
523- func_t * tail ;
515+ func_t * head , * tail ;
524516} func_list_t ;
525517
526518typedef struct {
0 commit comments