* alpha.c (alpha_handle_trap_shadows): Ignore CLOBBERs.
From-SVN: r17416
This commit is contained in:
parent
43ad1f80bc
commit
bb02e7eaa4
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
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);
|
||||
|
|
Loading…
Add table
Reference in a new issue