* calls.c (default_must_pass_in_stack): Fix typo in !type case.
authorRichard Henderson <rth@redhat.com>
Tue, 28 Jan 2003 16:56:36 +0000 (08:56 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Tue, 28 Jan 2003 16:56:36 +0000 (08:56 -0800)
From-SVN: r61980

gcc/ChangeLog
gcc/calls.c

index 626823b06f37ba2743543bd3349ad6f8f10aa05f..54ceb73b0beeb0aedf60005c075ecdbec423ac26 100644 (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.
index d6f68cdf76770f6056fe9c259b289d4677f08062..31ad51c131d7d9852b192c78d33935d6e16445a4 100644 (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)