i386.c (ix86_function_arg_boundary): Remove abort.
authorAldy Hernandez <aldyh@redhat.com>
Wed, 9 Jul 2003 22:19:04 +0000 (22:19 +0000)
committerAldy Hernandez <aldyh@gcc.gnu.org>
Wed, 9 Jul 2003 22:19:04 +0000 (22:19 +0000)
2003-07-09  Aldy Hernandez  <aldyh@redhat.com>

PR/11144
* config/i386/i386.c (ix86_function_arg_boundary): Remove abort.

From-SVN: r69159

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

index 31687810ee9543a52fe2886465c3316aebf4ccbd..683a24e7767437b6e001e0b9b3224b71b14a24de 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-09  Aldy Hernandez  <aldyh@redhat.com>
+
+       PR/11144
+       * config/i386/i386.c (ix86_function_arg_boundary): Remove abort.
+
 2003-07-09  Nathanael Nerode  <neroden@gcc.gnu.org>
 
        PR bootstrap/11043
index 2e13624af1a7438d0681b043642ee25e8bb0da5d..e4a66228665420cd39f1b82086ad8d318b64c148 100644 (file)
@@ -2610,8 +2610,8 @@ contains_128bit_aligned_vector_p (tree type)
   return false;
 }
 
-/* Gives the alignment boundary, in bits, of an argument with the specified mode
-   and type.   */
+/* Gives the alignment boundary, in bits, of an argument with the
+   specified mode and type.  */
 
 int
 ix86_function_arg_boundary (enum machine_mode mode, tree type)
@@ -2642,8 +2642,6 @@ ix86_function_arg_boundary (enum machine_mode mode, tree type)
          if (!contains_128bit_aligned_vector_p (type))
            align = PARM_BOUNDARY;
        }
-      if (align != PARM_BOUNDARY && !TARGET_SSE)
-       abort();
     }
   if (align > 128)
     align = 128;