From: Niklas Hallqvist Date: Sat, 30 Jan 1993 06:06:30 +0000 (+0000) Subject: * c-decl.c (c_build_type_variant): Moved to c-common.c. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d63b07f422b4341ab9439d81835c1f704beadca;p=gcc.git * c-decl.c (c_build_type_variant): Moved to c-common.c. From-SVN: r3389 --- 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).