Commit 5c07bd7a by Alan Modra Committed by Alan Modra

* function.c (assign_parms): Check for zero size args.

From-SVN: r66901
parent 90ff44cf
2003-05-17 Alan Modra <amodra@bigpond.net.au>
* function.c (assign_parms): Check for zero size args.
2003-05-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* cfgloopanal.c (test_for_iteration): Use string concatentation on
......
......@@ -4800,6 +4800,9 @@ assign_parms (fndecl)
if (GET_CODE (entry_parm) == PARALLEL)
emit_group_store (mem, entry_parm, size);
else if (size == 0)
;
/* If SIZE is that of a mode no bigger than a word, just use
that mode's store operation. */
else if (size <= UNITS_PER_WORD)
......
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