summaryrefslogtreecommitdiff
path: root/gcc/tree-streamer-out.c
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2014-11-19 20:35:49 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2014-11-19 20:35:49 +0000
commit73527b1dbb74fb8a2fcb92627292c1c0334c8364 (patch)
treeed9cd0838d07665b84936be11e2a67485aa22b5a /gcc/tree-streamer-out.c
parentb9a4cef3a919ac91927084c9dba7c8aa3423323a (diff)
downloadgcc-73527b1dbb74fb8a2fcb92627292c1c0334c8364.tar.gz
PR bootstrap/63963
* tree-streamer-out.c (write_ts_function_decl_tree_pointers): Stream out DECL_FUNCTION_SPECIFIC_TARGET * tree-streamer-in.c (lto_input_ts_function_decl_tree_pointers): Stream in DECL_FUNCTION_SPECIFIC_TARGET. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217809 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-streamer-out.c')
-rw-r--r--gcc/tree-streamer-out.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/tree-streamer-out.c b/gcc/tree-streamer-out.c
index f735b567421..b9594546d91 100644
--- a/gcc/tree-streamer-out.c
+++ b/gcc/tree-streamer-out.c
@@ -676,10 +676,9 @@ write_ts_function_decl_tree_pointers (struct output_block *ob, tree expr,
bool ref_p)
{
stream_write_tree (ob, DECL_VINDEX (expr), ref_p);
- /* DECL_STRUCT_FUNCTION is handled by lto_output_function. FIXME lto,
- maybe it should be handled here? */
+ /* DECL_STRUCT_FUNCTION is handled by lto_output_function. */
stream_write_tree (ob, DECL_FUNCTION_PERSONALITY (expr), ref_p);
- /* DECL_FUNCTION_SPECIFIC_TARGET is regenerated. */
+ stream_write_tree (ob, DECL_FUNCTION_SPECIFIC_TARGET (expr), ref_p);
stream_write_tree (ob, DECL_FUNCTION_SPECIFIC_OPTIMIZATION (expr), ref_p);
}