diff options
author | Richard Biener <rguenther@suse.de> | 2018-06-21 13:47:48 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2018-06-21 13:47:48 +0000 |
commit | f5fe239ec90095b885aef70a8058fdfc03a74340 (patch) | |
tree | 02dd721152dc2268b7d933b8468064b3448c7a77 /gcc/tree-streamer-in.c | |
parent | e67343d7445768ef22523894ec589791f526234c (diff) | |
download | gcc-f5fe239ec90095b885aef70a8058fdfc03a74340.zip gcc-f5fe239ec90095b885aef70a8058fdfc03a74340.tar.gz gcc-f5fe239ec90095b885aef70a8058fdfc03a74340.tar.bz2 |
lto-streamer-out.c (DFS::DFS_write_tree_body): Update outdated comment.
2018-06-21 Richard Biener <rguenther@suse.de>
* lto-streamer-out.c (DFS::DFS_write_tree_body): Update outdated
comment. Follow BLOCK_ABSTRACT_ORIGIN unconditionally.
* tree-streamer-in.c (lto_input_ts_block_tree_pointers): Update
comment.
* tree-streamer-out.c (write_ts_block_tree_pointers): Stream
BLOCK_ABSTRACT_ORIGIN unconditionally.
From-SVN: r261847
Diffstat (limited to 'gcc/tree-streamer-in.c')
-rw-r--r-- | gcc/tree-streamer-in.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/tree-streamer-in.c b/gcc/tree-streamer-in.c index 0226740..9fd9e72 100644 --- a/gcc/tree-streamer-in.c +++ b/gcc/tree-streamer-in.c @@ -927,11 +927,6 @@ lto_input_ts_block_tree_pointers (struct lto_input_block *ib, BLOCK_VARS (expr) = streamer_read_chain (ib, data_in); BLOCK_SUPERCONTEXT (expr) = stream_read_tree (ib, data_in); - - /* Stream BLOCK_ABSTRACT_ORIGIN and BLOCK_SOURCE_LOCATION for - the limited cases we can handle - those that represent inlined - function scopes. For the rest them on the floor instead of ICEing in - dwarf2out.c. */ BLOCK_ABSTRACT_ORIGIN (expr) = stream_read_tree (ib, data_in); /* Do not stream BLOCK_NONLOCALIZED_VARS. We cannot handle debug information for early inlined BLOCKs so drop it on the floor instead of ICEing in |