diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-09 22:19:04 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-09 22:19:04 +0000 |
commit | 8f80df0b38382218ab4e34bcb09efaafd8bd11e1 (patch) | |
tree | 47969757feeb8de6c6bff44794462e30be7061a2 /gcc | |
parent | c771e945f41b8cc5f1d69d161ac6236817e26fa7 (diff) | |
download | ppe42-gcc-8f80df0b38382218ab4e34bcb09efaafd8bd11e1.tar.gz ppe42-gcc-8f80df0b38382218ab4e34bcb09efaafd8bd11e1.zip |
2003-07-09 Aldy Hernandez <aldyh@redhat.com>
PR/11144
* config/i386/i386.c (ix86_function_arg_boundary): Remove abort.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69159 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 31687810ee9..683a24e7767 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 2e13624af1a..e4a66228665 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -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; |