Commit bc083e18 by Zdenek Dvorak Committed by Zdenek Dvorak

* gcse.c (store_killed_in_insn): Fix.

From-SVN: r68230
parent 1bc7c5b6
2003-06-20 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* gcse.c (store_killed_in_insn): Fix.
2003-06-19 Zack Weinberg <zack@codesourcery.com> 2003-06-19 Zack Weinberg <zack@codesourcery.com>
* target.h (asm_out.file_start, file_start_app_off, * target.h (asm_out.file_start, file_start_app_off,
......
...@@ -7464,7 +7464,7 @@ store_killed_in_insn (x, x_regs, insn) ...@@ -7464,7 +7464,7 @@ store_killed_in_insn (x, x_regs, insn)
base of some of registers used in mem is stack pointer. */ base of some of registers used in mem is stack pointer. */
for (reg = x_regs; reg; reg = XEXP (reg, 1)) for (reg = x_regs; reg; reg = XEXP (reg, 1))
{ {
base = find_base_term (reg); base = find_base_term (XEXP (reg, 0));
if (!base if (!base
|| (GET_CODE (base) == ADDRESS || (GET_CODE (base) == ADDRESS
&& GET_MODE (base) == Pmode && GET_MODE (base) == Pmode
...@@ -7831,7 +7831,6 @@ store_motion () ...@@ -7831,7 +7831,6 @@ store_motion ()
print_rtl (gcse_file, get_insns ()); print_rtl (gcse_file, get_insns ());
} }
init_alias_analysis (); init_alias_analysis ();
/* Find all the available and anticipatable stores. */ /* Find all the available and anticipatable stores. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment