]> gcc.gnu.org Git - gcc.git/commitdiff
optabs.c (expand_cmplxdiv_straight, [...]): Change function definitions to K&R style.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Thu, 20 May 1999 08:29:52 +0000 (08:29 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Thu, 20 May 1999 08:29:52 +0000 (08:29 +0000)
        * optabs.c (expand_cmplxdiv_straight, expand_cmplxdiv_wide):
        Change function definitions to K&R style.

From-SVN: r27057

gcc/ChangeLog
gcc/optabs.c

index 4dc280f2d3bbeeacdb8600fc831f97480c197c87..d93448684d25ac18606e08146a11dcf5965499d2 100644 (file)
@@ -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 9b4d4f1059c24f6313056d8adc2e41ec0aad507e..2e8a2a62a00b96efbf94a22122086c36efdc7e09 100644 (file)
@@ -359,10 +359,14 @@ widen_operand (op, mode, oldmode, unsignedp, no_extend)
 /* 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 real1, rtx imag0, rtx imag1,
 /* 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;
This page took 0.073543 seconds and 5 git commands to generate.