Index: tree-inline.c =================================================================== --- tree-inline.c (revision 118024) +++ tree-inline.c (working copy) @@ -2783,14 +2784,10 @@ /* Generate a new name for the new version. */ if (!update_clones) - DECL_NAME (new_decl) = create_tmp_var_name (NULL); - /* Create a new SYMBOL_REF rtx for the new name. */ - if (DECL_RTL (old_decl) != NULL) { - SET_DECL_RTL (new_decl, copy_rtx (DECL_RTL (old_decl))); - XEXP (DECL_RTL (new_decl), 0) = - gen_rtx_SYMBOL_REF (GET_MODE (XEXP (DECL_RTL (old_decl), 0)), - IDENTIFIER_POINTER (DECL_NAME (new_decl))); + DECL_NAME (new_decl) = create_tmp_var_name (NULL); + SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl)); + SET_DECL_RTL (new_decl, NULL_RTX); } /* Prepare the data structures for the tree copy. */