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

From-SVN: r61980
This commit is contained in:
Richard Henderson 2003-01-28 08:56:36 -08:00 committed by Richard Henderson
parent fd2e49b2ac
commit 40cdfd5aa4
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -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)