From d96ecaf4339976665eb6a8fa5ff6ab20091ac9ea Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Wed, 16 May 2001 19:58:10 +0200 Subject: [PATCH] re PR rtl-optimization/185 (Internal compiler error in `fixup_var_refs_1', at function.c:207) * stmt.c (expand_asm_operands): Be able to offload addressof expression to memory. (PR optimization/185) From-SVN: r42160 --- gcc/ChangeLog | 5 +++++ gcc/stmt.c | 1 + 2 files changed, 6 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 73b3fd2bed4..fd294e04932 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Wed May 16 19:53:53 CEST 2001 Jan Hubicka + + * stmt.c (expand_asm_operands): Be able to offload addressof + expression to memory. (PR optimization/185) + Wed May 16 18:53:23 CEST 2001 Jan Hubicka * combine.c (combine_simplify_rtx): Set op0_mode to VOIDmode after diff --git a/gcc/stmt.c b/gcc/stmt.c index e628635fc6a..917f46ba609 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -1757,6 +1757,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line) op); else if (GET_CODE (op) == REG || GET_CODE (op) == SUBREG + || GET_CODE (op) == ADDRESSOF || GET_CODE (op) == CONCAT) { tree type = TREE_TYPE (TREE_VALUE (tail)); -- 2.30.2