aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto-streamer.h
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2012-10-18 10:59:55 +0000
committerRichard Guenther <rguenther@suse.de>2012-10-18 10:59:55 +0000
commita5160f066d38fbacdb693e1bcdf540e7a33ebb21 (patch)
treeca0e67dc21d055b07a4151f583dd237d2349044d /gcc/lto-streamer.h
parent930df10ce587bf7d7b8ff6b8c3f39736d1c0c2c9 (diff)
2012-10-18 Richard Guenther <rguenther@suse.de>
* lto-streamer.h (enum LTO_tags): Add LTO_integer_cst. * lto-streamer-in.c (lto_input_tree): Use it. * lto-streamer-out.c (lto_output_tree): Likewise, for !TREE_OVERFLOW integer constants only. * tree-streamer-in.c (unpack_ts_int_cst_value_fields): New function. (unpack_value_fields): Call it. (streamer_read_integer_cst): Simplify. * tree-streamer-out.c (pack_ts_int_cst_value_fields): New function. (streamer_pack_tree_bitfields): Call it. (streamer_write_integer_cst): Adjust. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@192559 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto-streamer.h')
-rw-r--r--gcc/lto-streamer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/lto-streamer.h b/gcc/lto-streamer.h
index c7b7ef94871..c9d13aea4da 100644
--- a/gcc/lto-streamer.h
+++ b/gcc/lto-streamer.h
@@ -175,6 +175,9 @@ enum LTO_tags
/* An MD or NORMAL builtin. Only the code and class are streamed out. */
LTO_builtin_decl,
+ /* Shared INTEGER_CST node. */
+ LTO_integer_cst,
+
/* Function body. */
LTO_function,