diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2014-11-19 21:35:49 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2014-11-19 20:35:49 +0000 |
commit | 61204ad95c0af99bc890e70c68cffd4999ec5bc3 (patch) | |
tree | ed9cd0838d07665b84936be11e2a67485aa22b5a /gcc/tree-streamer-in.c | |
parent | b957b2e02582cc7ba739cd3886f38800542759bb (diff) | |
download | gcc-61204ad95c0af99bc890e70c68cffd4999ec5bc3.zip gcc-61204ad95c0af99bc890e70c68cffd4999ec5bc3.tar.gz gcc-61204ad95c0af99bc890e70c68cffd4999ec5bc3.tar.bz2 |
re PR lto/63963 (LTO doesn't work with __attribute__((__target__("sse4.2"))))
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.
From-SVN: r217809
Diffstat (limited to 'gcc/tree-streamer-in.c')
-rw-r--r-- | gcc/tree-streamer-in.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-streamer-in.c b/gcc/tree-streamer-in.c index fba6048..995b642 100644 --- a/gcc/tree-streamer-in.c +++ b/gcc/tree-streamer-in.c @@ -774,7 +774,7 @@ lto_input_ts_function_decl_tree_pointers (struct lto_input_block *ib, DECL_VINDEX (expr) = stream_read_tree (ib, data_in); /* DECL_STRUCT_FUNCTION is loaded on demand by cgraph_get_body. */ DECL_FUNCTION_PERSONALITY (expr) = stream_read_tree (ib, data_in); - /* DECL_FUNCTION_SPECIFIC_TARGET is regenerated from attributes. */ + DECL_FUNCTION_SPECIFIC_TARGET (expr) = stream_read_tree (ib, data_in); DECL_FUNCTION_SPECIFIC_OPTIMIZATION (expr) = stream_read_tree (ib, data_in); /* If the file contains a function with an EH personality set, |