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]
Other format: [Raw text]

fix fallout from elf32-xtensa.c conversion to C90


The old K&R version of this file had the argument declarations for one function in a different order than the argument list, so I messed up the argument order when I converted it to C90. This patch puts them back in the correct order. Committed on mainline.


2004-11-18 Bob Wilson <bob.wilson@acm.org>


* elf32-xtensa.c (ebb_propose_action): Fix argument order.


Index: elf32-xtensa.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-xtensa.c,v
retrieving revision 1.39
diff -u -p -r1.39 elf32-xtensa.c
--- elf32-xtensa.c	11 Nov 2004 23:09:24 -0000	1.39
+++ elf32-xtensa.c	19 Nov 2004 00:23:06 -0000
@@ -5599,8 +5599,8 @@ insn_block_decodable_len (bfd_byte *cont
 
 static void
 ebb_propose_action (ebb_constraint *c,
-		    bfd_vma alignment_pow,
 		    enum ebb_target_enum align_type,
+		    bfd_vma alignment_pow,
 		    text_action_t action,
 		    bfd_vma offset,
 		    int removed_bytes,

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