diff options
author | Richard Biener <rguenther@suse.de> | 2015-02-09 13:18:15 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2015-02-09 13:18:15 +0000 |
commit | b6bf201e3420300f685a4706dc0ef6581962e32f (patch) | |
tree | 2de8a54c507a8559e8a96f20f92c86c2abcff2ce /gcc/tree-streamer.h | |
parent | ddc5ffe9c2061ff5dba6545de658e6541269fdab (diff) | |
download | gcc-b6bf201e3420300f685a4706dc0ef6581962e32f.zip gcc-b6bf201e3420300f685a4706dc0ef6581962e32f.tar.gz gcc-b6bf201e3420300f685a4706dc0ef6581962e32f.tar.bz2 |
tree-streamer.h (streamer_pack_tree_bitfields): Remove.
2015-02-09 Richard Biener <rguenther@suse.de>
* tree-streamer.h (streamer_pack_tree_bitfields): Remove.
(streamer_write_tree_bitfields): Declare.
* tree-streamer-in.c (unpack_ts_base_value_fields): Inline,
properly unpack padding.
(unpack_value_fields): Inline ...
(streamer_read_tree_bitfields): ... here.
* tree-streamer-out.c (pack_ts_base_value_fields): Inline
and properly add padding bits.
(streamer_pack_tree_bitfields): Fold into ...
(streamer_write_tree_bitfields): ... this new function,
exposing the bitpack object.
* lto-streamer-out.c (lto_write_tree_1): Call
streamer_write_tree_bitfields.
From-SVN: r220540
Diffstat (limited to 'gcc/tree-streamer.h')
-rw-r--r-- | gcc/tree-streamer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/tree-streamer.h b/gcc/tree-streamer.h index 9c150f5..5c3acb6 100644 --- a/gcc/tree-streamer.h +++ b/gcc/tree-streamer.h @@ -85,8 +85,7 @@ void streamer_write_string_cst (struct output_block *, struct lto_output_stream *, tree); void streamer_write_chain (struct output_block *, tree, bool); void streamer_write_tree_header (struct output_block *, tree); -void streamer_pack_tree_bitfields (struct output_block *, struct bitpack_d *, - tree); +void streamer_write_tree_bitfields (struct output_block *, tree); void streamer_write_tree_body (struct output_block *, tree, bool); void streamer_write_integer_cst (struct output_block *, tree, bool); void streamer_write_builtin (struct output_block *, tree); |