diff options
| author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-23 12:37:47 +0000 |
|---|---|---|
| committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-23 12:37:47 +0000 |
| commit | 134f92d719f5437eae5b338f1787578a1c1444af (patch) | |
| tree | 4a4a7e1798abb0639f46c5935114947f5fd15c35 | |
| parent | 79de030962bdaee2e9fb2286fe927c06e8e3c385 (diff) | |
| download | ppe42-gcc-134f92d719f5437eae5b338f1787578a1c1444af.tar.gz ppe42-gcc-134f92d719f5437eae5b338f1787578a1c1444af.zip | |
* tree-flow.h (stmt_ann_d): Kill GTY ((skip)) mark on BB.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100080 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 c65fdfdbfef..25e9ec32955 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 3fc5d98ab49..348b16d8445 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; |

