Commit 40cdfd5a by Richard Henderson Committed by Richard Henderson

* calls.c (default_must_pass_in_stack): Fix typo in !type case.

From-SVN: r61980
parent fd2e49b2
2003-01-28 Richard Henderson <rth@redhat.com>
* calls.c (default_must_pass_in_stack): Fix typo in !type case.
2003-01-28 Roger Sayle <roger@eyesopen.com>
* cse.c (cse_insn): Avoid redundant REG_EQUAL notes.
......
......@@ -4628,7 +4628,7 @@ default_must_pass_in_stack (mode, type)
tree type;
{
if (!type)
return true;
return false;
/* If the type has variable size... */
if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
......
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