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 checked in for K&R stage1 cc on obtabs.c


	I checked in the following patch into the mainline (so I could
bootstrap on SunOS4 using cc for stage1.)  The 2.95 branch probably
needs this too.

		--Kaveh

Index: ChangeLog
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/ChangeLog,v
retrieving revision 1.3677
diff -u -p -r1.3677 ChangeLog
--- ChangeLog	1999/05/20 08:19:05	1.3677
+++ ChangeLog	1999/05/20 15:29:07
@@ -1,3 +1,8 @@
+Thu May 20 11:28:53 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+	* optabs.c (expand_cmplxdiv_straight, expand_cmplxdiv_wide):
+	Change function definitions to K&R style.
+
 Thu May 20 08:16:39 1999  Bruce Korb <ddsinc09@ix.netcom.com>
 
 	* fixinc/fixincl.c: We must not ignore SIGCLD now.
Index: optabs.c
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/optabs.c,v
retrieving revision 1.33
diff -u -p -r1.33 optabs.c
--- optabs.c	1999/05/18 01:05:06	1.33
+++ optabs.c	1999/05/20 15:29:10
@@ -359,10 +359,14 @@ widen_operand (op, mode, oldmode, unsign
 /* Generate code to perform a straightforward complex divide.  */
 
 static int
-expand_cmplxdiv_straight (rtx real0, rtx real1, rtx imag0, rtx imag1,
-			  rtx realr, rtx imagr, enum machine_mode submode,
-			  int unsignedp, enum optab_methods methods,
-			  enum mode_class class, optab binoptab)
+expand_cmplxdiv_straight (real0, real1, imag0, imag1, realr, imagr, submode,
+			  unsignedp, methods, class, binoptab)
+  rtx real0, real1, imag0, imag1, realr, imagr;
+  enum machine_mode submode;
+  int unsignedp;
+  enum optab_methods methods;
+  enum mode_class class;
+  optab binoptab;
 {
   rtx divisor;
   rtx real_t, imag_t;
@@ -475,10 +479,14 @@ expand_cmplxdiv_straight (rtx real0, rtx
 /* Generate code to perform a wide-input-range-acceptable complex divide.  */
 
 static int
-expand_cmplxdiv_wide (rtx real0, rtx real1, rtx imag0, rtx imag1,
-		      rtx realr, rtx imagr, enum machine_mode submode,
-		      int unsignedp, enum optab_methods methods,
-		      enum mode_class class, optab binoptab)
+expand_cmplxdiv_wide (real0, real1, imag0, imag1, realr, imagr, submode,
+		      unsignedp, methods, class, binoptab)
+  rtx real0, real1, imag0, imag1, realr, imagr;
+  enum machine_mode submode;
+  int unsignedp;
+  enum optab_methods methods;
+  enum mode_class class;
+  optab binoptab;
 {
   rtx ratio, divisor;
   rtx real_t, imag_t;
--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Qwest Internet Solutions


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