i386.c (reg_mentioned_in_mem): Don't abort when falling through default case in switch.
authorMark Mitchell <mmitchell@usa.net>
Wed, 11 Feb 1998 15:09:17 +0000 (15:09 +0000)
committerMark Mitchell <mmitchell@gcc.gnu.org>
Wed, 11 Feb 1998 15:09:17 +0000 (15:09 +0000)
* config/i386/i386.c (reg_mentioned_in_mem): Don't abort when
falling through default case in switch.
(i386_aligned_p): Likewise.

From-SVN: r17860

gcc/ChangeLog
gcc/config/i386/i386.c

index 7dd1dfa6a187fb35244f2c3c585fb53b61355325..8b5b58c89a9f9f29de24bcf80d3461bc432baddf 100644 (file)
@@ -1,3 +1,9 @@
+1998-02-11  Mark Mitchell  <mmitchell@usa.net>
+
+       * config/i386/i386.c (reg_mentioned_in_mem): Don't abort when
+       falling through default case in switch.
+       (i386_aligned_p): Likewise.
+
 Wed Feb 11 12:59:56 1998  Lee Iverson  <leei@Canada.AI.SRI.COM>
 
        * mips/mips.h (mips_abi_string): Correct typo in comment.
index ae370e105118c5b8f4ea51eed52eca6128b894d2..796c3f58813d77ae4cf48dfc2f7ea0d8f555c97f 100644 (file)
@@ -495,7 +495,7 @@ i386_aligned_p (op)
       return i386_aligned_reg_p (REGNO (op));
     
     default:
-      abort ();
+      break;
     }
 
   return 0;
@@ -4828,7 +4828,7 @@ reg_mentioned_in_mem (reg, rtl)
     case SUBREG:
       return 0;
     default:
-      abort ();
+      break;
     }
 
   if (code == MEM && reg_mentioned_p (reg, rtl))