OSDN Git Service

* config/i386/i386.c (reg_mentioned_in_mem): Don't abort when
authormmitchell <mmitchell@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Feb 1998 15:09:17 +0000 (15:09 +0000)
committermmitchell <mmitchell@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Feb 1998 15:09:17 +0000 (15:09 +0000)
falling through default case in switch.
(i386_aligned_p): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17860 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 7dd1dfa..8b5b58c 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 ae370e1..796c3f5 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))