Commit a926b253 by Richard Henderson Committed by Richard Henderson

re PR middle-end/16026 (ICE in function.c:4804, assign_parms, when -mpowerpc64 &…

re PR middle-end/16026 (ICE in function.c:4804, assign_parms, when -mpowerpc64 & half-word operation)

        PR middle-end/16026
        * function.c (assign_parms): Don't abort for overaligned PARALLEL.

From-SVN: r83525
parent 1eb38ecb
2004-06-22 Richard Henderson <rth@redhat.com>
PR middle-end/16026
* function.c (assign_parms): Don't abort for overaligned PARALLEL.
2004-06-22 Joseph S. Myers <jsm@polyomino.org.uk>
* Makefile.in (distclean): Don't try to remove empty directories.
......
......@@ -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 ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment