This is the mail archive of the gcc-patches@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]
Other format: [Raw text]

3.2 PATCH: Fixed typo in config/sparc/sparc.c


config/sparc/sparc.c contained a typo that broke sparc-sun-solaris2.8
bootstrap.  Fixed thus; committed as obvious.

	Rainer


2002-05-17  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>

	* config/sparc/sparc.c (sparc_aout_select_section): Fixed typo.

Index: config/sparc/sparc.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/sparc/sparc.c,v
retrieving revision 1.219
diff -u -p -r1.219 sparc.c
--- config/sparc/sparc.c	17 May 2002 07:43:38 -0000	1.219
+++ config/sparc/sparc.c	17 May 2002 11:50:33 -0000
@@ -8053,7 +8053,7 @@ sparc_aout_select_section (t, reloc, ali
      int reloc;
      unsigned HOST_WIDE_INT align;
 {
-  default_select_section (t, reloc | SUNOS4_SHARED_LIBRARIES, align)
+  default_select_section (t, reloc | SUNOS4_SHARED_LIBRARIES, align);
 }
 
 int


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