Commit bb02e7ea by Richard Henderson Committed by Richard Henderson

* alpha.c (alpha_handle_trap_shadows): Ignore CLOBBERs.

From-SVN: r17416
parent 43ad1f80
Sun Jan 18 20:18:01 1998 Richard Henderson <rth@cygnus.com>
* alpha.c (alpha_handle_trap_shadows): Ignore CLOBBERs.
Sun Jan 18 01:54:27 1998 Jeffrey A Law (law@cygnus.com)
* alpha/xm-winnt.h (HAS_INIT_SECTION): Undefine.
......
......@@ -3718,8 +3718,9 @@ alpha_handle_trap_shadows (insns)
switch (GET_CODE (i))
{
case INSN:
/* Annoyingly, get_attr_trap will abort on USE. */
if (GET_CODE (PATTERN (i)) == USE)
/* Annoyingly, get_attr_trap will abort on these. */
if (GET_CODE (PATTERN (i)) == USE
|| GET_CODE (PATTERN (i)) == CLOBBER)
break;
summarize_insn (PATTERN (i), &sum, 0);
......
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