diff options
author | Jan Hubicka <jh@suse.cz> | 2001-05-16 19:58:10 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-05-16 17:58:10 +0000 |
commit | d96ecaf4339976665eb6a8fa5ff6ab20091ac9ea (patch) | |
tree | 6c706e881955ca2c028aee2b86aa15c88ff30293 /gcc/stmt.c | |
parent | 6e20204ff4046f1309800d18ca62a2ea7173adb3 (diff) | |
download | gcc-d96ecaf4339976665eb6a8fa5ff6ab20091ac9ea.zip gcc-d96ecaf4339976665eb6a8fa5ff6ab20091ac9ea.tar.gz gcc-d96ecaf4339976665eb6a8fa5ff6ab20091ac9ea.tar.bz2 |
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
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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)); |