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]

[committed] Fix old-style definition in pa backend


 Hi,

  I noticed an old-style definition warning while bootstrapping mainline for
fptr.c .

 I've commited the following patch as obvious.

James A. Morrison

Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ChangeLog,v
retrieving revision 2.2425
diff -u -r2.2425 ChangeLog
--- ChangeLog	23 Jan 2004 02:03:11 -0000	2.2425
+++ ChangeLog	23 Jan 2004 04:27:36 -0000
@@ -1,3 +1,7 @@
+2004-01-22  James A. Mmorrison  <ja2morri@uwaterloo.ca>
+
+	* config/pa/fptr.c: Fix old-style definition.
+
 2004-01-22  Paolo Bonzini  <bonzini@gnu.org>
 
 	PR optimization/13724
Index: config/pa/fptr.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/pa/fptr.c,v
retrieving revision 1.4
diff -u -r1.4 fptr.c
--- config/pa/fptr.c	23 Aug 2003 01:32:54 -0000	1.4
+++ config/pa/fptr.c	23 Jan 2004 04:27:36 -0000
@@ -57,8 +57,7 @@
       __attribute__ ((visibility ("hidden")));
 
 unsigned int
-__canonicalize_funcptr_for_compare (fptr)
-     fptr_t fptr;
+__canonicalize_funcptr_for_compare (fptr_t fptr)
 {
   static unsigned int fixup_plabel[2];
   static fixup_t fixup;


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