From: Richard Kenner Date: Sun, 31 Dec 2000 01:53:54 +0000 (+0000) Subject: * expr.c (expand_expr, case COMPONENT_REF): Fix typo in last change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=27fb3e162eabe30c0dcf6e09c958f864201f2c3e;p=gcc.git * expr.c (expand_expr, case COMPONENT_REF): Fix typo in last change. From-SVN: r38568 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3c3dc8b7501..2a0f2ee67e8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-12-30 Richard Kenner + + * expr.c (expand_expr, case COMPONENT_REF): Fix typo in last change. + 2000-12-30 Kaveh R. Ghazi * builtins.c (validate_arglist): New function, use it. diff --git a/gcc/expr.c b/gcc/expr.c index c4160d99d97..25379e7a735 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -7042,7 +7042,7 @@ expand_expr (exp, target, tmode, modifier) if (mode == BLKmode) { - tree nt = build_qualified_type (type_for_size (ext_mode, 0), + tree nt = build_qualified_type (type_for_mode (ext_mode, 0), TYPE_QUAL_CONST); rtx new = assign_temp (nt, 0, 1, 1);