diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-flow.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c65fdfd..25e9ec32 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-05-23 Jan Hubicka <jh@suse.cz> + + * tree-flow.h (stmt_ann_d): Kill GTY ((skip)) mark on BB. + 2005-05-23 Eric Botcazou <ebotcazou@libertysurf.fr> * config/sparc/sparc-protos.h (sparc_expand_move): New prototype. diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 3fc5d98..348b16d 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -308,7 +308,7 @@ struct stmt_ann_d GTY(()) unsigned makes_clobbering_call : 1; /* Basic block that contains this statement. */ - basic_block GTY ((skip (""))) bb; + basic_block bb; /* Operand cache for stmt. */ struct stmt_operands_d GTY ((skip (""))) operands; |