diff options
author | Jim Wilson <wilson@redhat.com> | 2001-09-07 23:25:01 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2001-09-07 16:25:01 -0700 |
commit | 43fe47ca785b524496e2082eddfd00b50b68b281 (patch) | |
tree | 944330803f51ba791ebf2256c7196203c46cdef1 /gcc/flow.c | |
parent | 177b41ebf31068a9423718b445d08181295d8c87 (diff) | |
download | gcc-43fe47ca785b524496e2082eddfd00b50b68b281.zip gcc-43fe47ca785b524496e2082eddfd00b50b68b281.tar.gz gcc-43fe47ca785b524496e2082eddfd00b50b68b281.tar.bz2 |
re PR rtl-optimization/3783 (gcc3.0/ia64 ICE on linux kernel file fs/ufs/super.c)
Fix for PR 3783.
* alias.c (clear_reg_alias_info): New.
* flow.c (attempt_auto_inc): Call clear_reg_alias_info.
* rtl.h (clear_reg_alias_info): Declare.
From-SVN: r45482
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -7027,6 +7027,9 @@ attempt_auto_inc (pbi, inc, insn, mem, incr, incr_reg) for (temp = insn; temp != incr; temp = NEXT_INSN (temp)) if (GET_CODE (temp) == CALL_INSN) REG_N_CALLS_CROSSED (regno)++; + + /* Invalidate alias info for Q since we just changed its value. */ + clear_reg_alias_info (q); } else return; |