Commit 8dda1a21 by David Edelsohn Committed by David Edelsohn

rs6000.c (rs6000_stack_info): Undo spurious part of last change.

        * rs6000.c (rs6000_stack_info): Undo spurious part of last
        change.

From-SVN: r24463
parent b07fe368
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.
......
......@@ -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)
......
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