This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


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

forwarded message from David Mosberger


I forgot to cc the "binutils" mailing list.  I'd appreciate it if
someone with write access to the CVS tree could check this patch in
(for 2.11.1 and later, I assume).

Thanks,

	--david



The attached patch fixes a bug in the gas .spillsp.p/.spillpsp.p
directives.  Could someone check this into the official binutils
tree?

Thanks,

	--david

2001-04-26  David Mosberger  <davidm@hpl.hp.com>

	* config/tc-ia64.c (dot_spillmem_p): Fix output_spill_?sprel_p()
	argument passing order: predicate goes last, not first.

Index: config/tc-ia64.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-ia64.c,v
retrieving revision 1.48
diff -u -r1.48 tc-ia64.c
--- config/tc-ia64.c	2001/04/14 03:51:40	1.48
+++ config/tc-ia64.c	2001/04/27 03:53:23
@@ -3613,9 +3613,9 @@
     }
 
   if (psprel)
-    add_unwind_entry (output_spill_psprel_p (qp, ab, reg, e3.X_add_number));
+    add_unwind_entry (output_spill_psprel_p (ab, reg, e3.X_add_number, qp));
   else
-    add_unwind_entry (output_spill_sprel_p (qp, ab, reg, e3.X_add_number));
+    add_unwind_entry (output_spill_sprel_p (ab, reg, e3.X_add_number, qp));
 }
 
 static void

_______________________________________________
Linux-IA64 mailing list
Linux-IA64@linuxia64.org
http://lists.linuxia64.org/lists/listinfo/linux-ia64



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