diff options
author | Richard Earnshaw <rearnsha@arm.com> | 2003-01-27 10:46:47 +0000 |
---|---|---|
committer | Richard Earnshaw <rearnsha@gcc.gnu.org> | 2003-01-27 10:46:47 +0000 |
commit | c552c1468c3e29465d462fd7aeb06322cc83e6b3 (patch) | |
tree | 6831d5ca3a91185d236823ddcd6781c25bd64ebe /gcc/function.c | |
parent | 9a376494fbb0cdc7d2efd8fdc9deaf85541c2e29 (diff) | |
download | gcc-c552c1468c3e29465d462fd7aeb06322cc83e6b3.zip gcc-c552c1468c3e29465d462fd7aeb06322cc83e6b3.tar.gz gcc-c552c1468c3e29465d462fd7aeb06322cc83e6b3.tar.bz2 |
re PR rtl-optimization/9090 ([3.2/3.3/3.4 regression?] arm ICE with >= -O2; regression from 2.95)
PR optimization/9090
* function.c (purge_addressof_1): After pushing an addressed register
onto the stack, simplify the result.
From-SVN: r61881
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/function.c b/gcc/function.c index c57ad6d..fe5394e 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -3007,10 +3007,7 @@ purge_addressof_1 (loc, insn, force, store, ht) rtx sub, insns; if (GET_CODE (XEXP (x, 0)) != MEM) - { - put_addressof_into_stack (x, ht); - return true; - } + put_addressof_into_stack (x, ht); /* We must create a copy of the rtx because it was created by overwriting a REG rtx which is always shared. */ |