rs6000.c (rs6000_stack_info): Undo spurious part of last change.
authorDavid Edelsohn <edelsohn@mhpcc.edu>
Sun, 3 Jan 1999 00:24:05 +0000 (00:24 +0000)
committerDavid Edelsohn <dje@gcc.gnu.org>
Sun, 3 Jan 1999 00:24:05 +0000 (19:24 -0500)
        * rs6000.c (rs6000_stack_info): Undo spurious part of last
        change.

From-SVN: r24463

gcc/ChangeLog
gcc/config/rs6000/rs6000.c

index ef72f09308470d014354b717a7b2ec30bfc889c4..e8e79e13bcfd84b8ad31e0ac39a6201703f4589d 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jan  3 03:20:38 1999  David Edelsohn  <edelsohn@mhpcc.edu>
+
+       * rs6000.c (rs6000_stack_info): Undo spurious part of last
+       change.
+
 1999-01-01  Manfred Hollstein  <manfred@s-direktnet.de>
 
        * extend.texi (__builtin_constant_p): Add missing @smallexample.
index 2288a42c5d5a229f876e84b637fbcb043319c390..560ecff16d100db2f497fb032e4b405518caa075 100644 (file)
@@ -3585,10 +3585,10 @@ rs6000_stack_info ()
     info_ptr->fpmem_offset = 0;  
 
   /* Zero offsets if we're not saving those registers */
-  if (!info_ptr->fp_size)
+  if (info_ptr->fp_size == 0)
     info_ptr->fp_save_offset = 0;
 
-  if (!info_ptr->gp_size)
+  if (info_ptr->gp_size == 0)
     info_ptr->gp_save_offset = 0;
 
   if (!info_ptr->lr_save_p)