Commit 8cf9feca by Jan Hubicka Committed by Jan Hubicka

re PR middle-end/44671 (Partial inlining breaks C++)

	PR middle-end/44671
	* cgraphunit.c (cgraph_function_versioning): Remove wrong cgraph_make_decl_local
	call; fix typo copying RTL data.

From-SVN: r161428
parent e4814b39
2010-06-26 Jan Hubicka <jh@suse.cz>
PR middle-end/44671
* cgraphunit.c (cgraph_function_versioning): Remove wrong cgraph_make_decl_local
call; fix typo copying RTL data.
2010-06-25 DJ Delorie <dj@redhat.com>
* config/m32c/m32c-protos.h (m32c_note_pragma_address): Declare.
......
......@@ -2128,7 +2128,7 @@ cgraph_copy_node_for_versioning (struct cgraph_node *old_version,
new_version->local.local = true;
new_version->local.vtable_method = false;
new_version->global = old_version->global;
new_version->rtl = new_version->rtl;
new_version->rtl = old_version->rtl;
new_version->reachable = true;
new_version->count = old_version->count;
......@@ -2196,7 +2196,6 @@ cgraph_function_versioning (struct cgraph_node *old_version_node,
else
new_decl = build_function_decl_skip_args (old_decl, args_to_skip);
cgraph_make_decl_local (new_decl);
/* Generate a new name for the new version. */
DECL_NAME (new_decl) = clone_function_name (old_decl, clone_name);
SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment