This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch for missing argument


The latest changes to fill_slots_from_thread missed one caller which needs
the new argument passed, too.

Mon Mar  2 16:12:28 1998  Manfred Hollstein  <manfred@s-direktnet.de>

	* reorg.c (fill_eager_delay_slots): Add new argument delay_list
	in call to fill_slots_from_thread.

diff -up egcs-980302.orig/gcc/reorg.c egcs-980302/gcc/reorg.c
--- egcs-980302.orig/gcc/reorg.c	Mon Mar  2 14:01:14 1998
+++ egcs-980302/gcc/reorg.c	Mon Mar  2 16:06:30 1998
@@ -3948,7 +3948,8 @@ fill_eager_delay_slots ()
 	      = fill_slots_from_thread (insn, condition, fallthrough_insn,
 					insn_at_target, 0, 0,
 					own_fallthrough,
-					slots_to_fill, &slots_filled);
+					slots_to_fill, &slots_filled,
+					delay_list);
 
 	  if (delay_list == 0)
 	    delay_list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]