summaryrefslogtreecommitdiff
path: root/gcc/cgraphclones.c
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2014-10-02 07:07:04 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2014-10-02 07:07:04 +0000
commit40e1cddf47a663c3b023bcfbd6dd69d41e277bdd (patch)
tree29245837e96d630a369b99a5dc1ca12ac87d4c65 /gcc/cgraphclones.c
parent072ec6eb6d08384ac2b31616e1438af18c382a6c (diff)
downloadgcc-40e1cddf47a663c3b023bcfbd6dd69d41e277bdd.tar.gz
* cgraphclones.c (build_function_type_skip_args): Do not make new
type variant of old. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@215795 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraphclones.c')
-rw-r--r--gcc/cgraphclones.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/gcc/cgraphclones.c b/gcc/cgraphclones.c
index 38d92f53e83..37b234f7891 100644
--- a/gcc/cgraphclones.c
+++ b/gcc/cgraphclones.c
@@ -177,7 +177,7 @@ build_function_type_skip_args (tree orig_type, bitmap args_to_skip,
bool skip_return)
{
tree new_type = NULL;
- tree args, new_args = NULL, t;
+ tree args, new_args = NULL;
tree new_reversed;
int i = 0;
@@ -218,22 +218,6 @@ build_function_type_skip_args (tree orig_type, bitmap args_to_skip,
if (skip_return)
TREE_TYPE (new_type) = void_type_node;
- /* This is a new type, not a copy of an old type. Need to reassociate
- variants. We can handle everything except the main variant lazily. */
- t = TYPE_MAIN_VARIANT (orig_type);
- if (t != orig_type)
- {
- t = build_function_type_skip_args (t, args_to_skip, skip_return);
- TYPE_MAIN_VARIANT (new_type) = t;
- TYPE_NEXT_VARIANT (new_type) = TYPE_NEXT_VARIANT (t);
- TYPE_NEXT_VARIANT (t) = new_type;
- }
- else
- {
- TYPE_MAIN_VARIANT (new_type) = new_type;
- TYPE_NEXT_VARIANT (new_type) = NULL;
- }
-
return new_type;
}