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]

Patch installed to fix typo in builtins.c


The declaration return type disagreed with the definition, major
breakage ensued.  Installed as obvious.

Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ChangeLog,v
retrieving revision 1.11118
diff -u -p -r1.11118 ChangeLog
--- ChangeLog	2001/08/22 02:10:52	1.11118
+++ ChangeLog	2001/08/22 03:53:12
@@ -1,3 +1,7 @@
+2001-08-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+	* builtins.c (type_to_class): Fix typo in last change.
+
 2001-08-21  Richard Henderson  <rth@redhat.com>
 
 	* config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Don't emit '#' if 
Index: builtins.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/builtins.c,v
retrieving revision 1.113
diff -u -p -r1.113 builtins.c
--- builtins.c	2001/08/21 15:51:21	1.113
+++ builtins.c	2001/08/22 03:53:12
@@ -91,7 +91,7 @@ static rtx expand_builtin_apply_args	PAR
 static rtx expand_builtin_apply_args_1	PARAMS ((void));
 static rtx expand_builtin_apply		PARAMS ((rtx, rtx, rtx));
 static void expand_builtin_return	PARAMS ((rtx));
-static int type_to_class		PARAMS ((tree));
+static enum type_class type_to_class	PARAMS ((tree));
 static rtx expand_builtin_classify_type	PARAMS ((tree));
 static rtx expand_builtin_mathfn	PARAMS ((tree, rtx, rtx));
 static rtx expand_builtin_constant_p	PARAMS ((tree));


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