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]

Re: [PATCH] Convert gas SH pieces to ISO C90 (committed)


kaz Kojima <kkojima@rr.iij4u.or.jp> wrote:
> I've committed the attached patch which converts gas tc-sh*
> files to ISO C90 prototypes.

Ugr.  It breaks coff targets.  The attached patch fixes this
breakage.  Committed as obvious.  Sorry for my mistake.

--
2003-10-11  Kaz Kojima  <kkojima@rr.iij4u.or.jp>

	* config/tc-sh.h (sh_coff_reloc_mangle): Delete an extra
	parenthesis.

Index: config/tc-sh.h
===================================================================
RCS file: /cvs/src/src/gas/config/tc-sh.h,v
retrieving revision 1.29
diff -u -r1.29 tc-sh.h
--- config/tc-sh.h	11 Oct 2003 13:40:21 -0000	1.29
+++ config/tc-sh.h	11 Oct 2003 21:38:31 -0000
@@ -154,7 +154,7 @@
   sh_coff_reloc_mangle ((seg), (fix), (int), (paddr))
 extern void sh_coff_reloc_mangle
   (struct segment_info_struct *, struct fix *,
-   struct internal_reloc *, unsigned int));
+   struct internal_reloc *, unsigned int);
 
 #define tc_coff_symbol_emit_hook(a) ; /* not used */
 


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