diff options
Diffstat (limited to 'gcc/tree-streamer.c')
-rw-r--r-- | gcc/tree-streamer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-streamer.c b/gcc/tree-streamer.c index f491c4e..f29690f 100644 --- a/gcc/tree-streamer.c +++ b/gcc/tree-streamer.c @@ -267,10 +267,10 @@ record_common_node (struct streamer_tree_cache_d *cache, tree node) /* The FIELD_DECLs of structures should be shared, so that every COMPONENT_REF uses the same tree node when referencing a field. Pointer equality between FIELD_DECLs is used by the alias - machinery to compute overlapping memory references (See - nonoverlapping_component_refs_p). */ - tree f; - for (f = TYPE_FIELDS (node); f; f = TREE_CHAIN (f)) + machinery to compute overlapping component references (see + nonoverlapping_component_refs_p and + nonoverlapping_component_refs_of_decl_p). */ + for (tree f = TYPE_FIELDS (node); f; f = TREE_CHAIN (f)) record_common_node (cache, f); } } |