i386.c (ix86_function_arg_boundary): Remove abort.

2003-07-09  Aldy Hernandez  <aldyh@redhat.com>

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

From-SVN: r69159
This commit is contained in:
Aldy Hernandez 2003-07-09 22:19:04 +00:00 committed by Aldy Hernandez
parent 21f3dbfc1c
commit bb498ea3a5
2 changed files with 7 additions and 4 deletions

View 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

View 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;