summaryrefslogtreecommitdiffstats
path: root/gcc/function.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2004-06-22 23:54:46 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2004-06-22 23:54:46 +0000
commitbdb257b8017ffc784dd4e1573887cdb907676db1 (patch)
tree4f7d9532f64d0094cd528e9d4fccf00b6ab9534b /gcc/function.c
parentff84df0873a13ae0bf957a402320a75f7fd45c9e (diff)
downloadppe42-gcc-bdb257b8017ffc784dd4e1573887cdb907676db1.tar.gz
ppe42-gcc-bdb257b8017ffc784dd4e1573887cdb907676db1.zip
PR middle-end/16026
* function.c (assign_parms): Don't abort for overaligned PARALLEL. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83525 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 8fd0a6f35ab..ea092838519 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -4819,8 +4819,7 @@ assign_parms (tree fndecl)
PUT_MODE (stack_parm, GET_MODE (entry_parm));
set_mem_attributes (stack_parm, parm, 1);
}
- else if (GET_CODE (entry_parm) == PARALLEL
- && GET_MODE(entry_parm) == BLKmode)
+ else if (GET_CODE (entry_parm) == PARALLEL)
;
else if (PARM_BOUNDARY % BITS_PER_WORD != 0)
abort ();
OpenPOWER on IntegriCloud