Commit 127cd405 by Torbjorn Granlund Committed by Jeff Law

except.c (eh_outer_context): Expand masking operation using expand_binop.

        * except.c (eh_outer_context): Expand masking operation using
        expand_binop.
From tege.

From-SVN: r15046
parent 8cf02b47
Wed Sep 3 02:09:30 1997 Torbjorn Granlund <tege@pdc.kth..se>
* except.c (eh_outer_context): Expand masking operation using
expand_binop.
Tue Sep 2 18:09:39 1997 Jim Wilson <wilson@cygnus.com>
* alpha.md (floatdisf2-1): New pattern.
......
......@@ -645,10 +645,8 @@ eh_outer_context (addr)
{
/* First mask out any unwanted bits. */
#ifdef MASK_RETURN_ADDR
emit_insn (gen_rtx (SET, Pmode,
addr,
gen_rtx (AND, Pmode,
addr, MASK_RETURN_ADDR)));
expand_binop (Pmode, and_optab, addr, MASK_RETURN_ADDR, addr,
1, OPTAB_LIB_WIDEN);
#endif
/* Then subtract out enough to get into the appropriate region. If
......
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