From 6c8538ccb1bc8db7f1491f8003434155bdecdec2 Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Tue, 2 Jun 1998 21:16:10 +0000 Subject: expr.c (expand_expr, [...]): Handle taking the address of an ADDRESSOF rtx. * expr.c (expand_expr, case ADDR_EXPR): Handle taking the address of an ADDRESSOF rtx. From-SVN: r20193 --- gcc/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/expr.c') diff --git a/gcc/expr.c b/gcc/expr.c index f6b5216..2aa514b 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -7275,7 +7275,7 @@ expand_expr (exp, target, tmode, modifier) } else if (GET_CODE (op0) == REG || GET_CODE (op0) == SUBREG - || GET_CODE (op0) == CONCAT) + || GET_CODE (op0) == CONCAT || GET_CODE (op0) == ADDRESSOF) { /* If this object is in a register, it must be not be BLKmode. */ -- cgit v1.1