* rs6000.c (rs6000_stack_info): Undo spurious part of last
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 Jan 1999 00:24:05 +0000 (00:24 +0000)
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 Jan 1999 00:24:05 +0000 (00:24 +0000)
        change.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24463 138bc75d-0d04-0410-961f-82ee72b054a4

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

index ef72f09..e8e79e1 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 2288a42..560ecff 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)