* i386.c (ix86_expand_prologue): Fix merging conflict.
authorJan Hubicka <jh@suse.cz>
Thu, 14 Jun 2001 13:41:22 +0000 (15:41 +0200)
committerJan Hubicka <hubicka@gcc.gnu.org>
Thu, 14 Jun 2001 13:41:22 +0000 (13:41 +0000)
From-SVN: r43373

gcc/ChangeLog
gcc/config/i386/i386.c

index 107f623..4d2efb3 100644 (file)
@@ -1,3 +1,7 @@
+Thu Jun 14 15:38:28 CEST 2001  Jan Hubicka  <jh@suse.cz>
+
+       * i386.c (ix86_expand_prologue): Fix merging conflict.
+
 2001-06-14  Joseph S. Myers  <jsm28@cam.ac.uk>
 
        * doc/c-tree.texi, doc/contrib.texi, doc/extend.texi,
index af765db..fb57394 100644 (file)
@@ -2536,11 +2536,11 @@ ix86_expand_prologue ()
 
   if (allocate == 0)
     ;
-  else if (! TARGET_STACK_PROBE || frame.to_allocate < CHECK_STACK_LIMIT)
+  else if (! TARGET_STACK_PROBE || allocate < CHECK_STACK_LIMIT)
     {
       insn = emit_insn (gen_pro_epilogue_adjust_stack
                        (stack_pointer_rtx, stack_pointer_rtx,
-                        GEN_INT (-frame.to_allocate)));
+                        GEN_INT (-allocate)));
       RTX_FRAME_RELATED_P (insn) = 1;
     }
   else