]> gcc.gnu.org Git - gcc.git/commitdiff
* alpha.c (alpha_handle_trap_shadows): Ignore CLOBBERs.
authorRichard Henderson <rth@cygnus.com>
Sun, 18 Jan 1998 20:15:24 +0000 (12:15 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Sun, 18 Jan 1998 20:15:24 +0000 (12:15 -0800)
From-SVN: r17416

gcc/ChangeLog
gcc/config/alpha/alpha.c

index 67403e499227c6b5eda82465c38919c64c258b89..5a91943d03d5bc840fa569d2ca2bf054bc3b624f 100644 (file)
@@ -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.
index f418ea111360838e2dbca24b628256596484ab51..d429b9931e0eb3a5d9f4963cd7fbce68a362f5b9 100644 (file)
@@ -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);
This page took 0.080997 seconds and 5 git commands to generate.