From: Richard Kenner Date: Sat, 26 Feb 1994 12:13:48 +0000 (-0500) Subject: (substitute_in_type, case REAL_TYPE): Fix typo in previous change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=818a0d4e44eca1ebbe1ecb75863b7e5842d66e8c;p=gcc.git (substitute_in_type, case REAL_TYPE): Fix typo in previous change. From-SVN: r6627 --- diff --git a/gcc/tree.c b/gcc/tree.c index 8d2df27b783..c22be3d6d5d 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -2124,7 +2124,7 @@ substitute_in_type (t, f, r) && TREE_CODE (TYPE_MAX_VALUE (t)) != REAL_CST && contains_placeholder_p (TYPE_MAX_VALUE (t)))) { - t = copy_type (t); + t = build_type_copy (t); if (TYPE_MIN_VALUE (t)) TYPE_MIN_VALUE (t) = substitute_in_expr (TYPE_MIN_VALUE (t), f, r);