From 5d63b07f422b4341ab9439d81835c1f704beadca Mon Sep 17 00:00:00 2001 From: Niklas Hallqvist Date: Sat, 30 Jan 1993 06:06:30 +0000 Subject: [PATCH] * c-decl.c (c_build_type_variant): Moved to c-common.c. From-SVN: r3389 --- gcc/c-decl.c | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/gcc/c-decl.c b/gcc/c-decl.c index b355ab124a6..1a32e3c153a 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -4431,21 +4431,6 @@ grokdeclarator (declarator, declspecs, decl_context, initialized) } } -/* Make a variant type in the proper way for C, propagating qualifiers - down to the element type of an array. */ - -tree -c_build_type_variant (type, constp, volatilep) - tree type; - int constp, volatilep; -{ - if (TREE_CODE (type) == ARRAY_TYPE) - type = build_array_type (c_build_type_variant (TREE_TYPE (type), - constp, volatilep), - TYPE_DOMAIN (type)); - return build_type_variant (type, constp, volatilep); -} - /* Decode the parameter-list info for a function type or function definition. The argument is the value returned by `get_parm_info' (or made in parse.y if there is an identifier list instead of a parameter decl list). -- 2.30.2