summaryrefslogtreecommitdiffstats
path: root/gcc/optabs.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-05-20 08:29:52 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-05-20 08:29:52 +0000
commit48544e0292d33047411febc58744e438d5127b78 (patch)
treeca1ed7b4ba6ee098e553fd5b16273bfc530430f6 /gcc/optabs.c
parenta5b1e8ad34500f24632c0dbcaa4c0788c0a48d06 (diff)
downloadppe42-gcc-48544e0292d33047411febc58744e438d5127b78.tar.gz
ppe42-gcc-48544e0292d33047411febc58744e438d5127b78.zip
* optabs.c (expand_cmplxdiv_straight, expand_cmplxdiv_wide):
Change function definitions to K&R style. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27057 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r--gcc/optabs.c24
1 files changed, 16 insertions, 8 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c
index 9b4d4f1059c..2e8a2a62a00 100644
--- a/gcc/optabs.c
+++ b/gcc/optabs.c
@@ -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;
OpenPOWER on IntegriCloud