Fix formatting

This commit is contained in:
Nick Clifton
2000-07-08 20:34:43 +00:00
parent d0313fb7a7
commit f851444e73
3 changed files with 43 additions and 49 deletions

View File

@ -2,6 +2,9 @@
* config/tc-sh.c: Fix formatting.
* config/tc-tic54x.c: Fix formatting.
* depend.c: Fix formatting.
* flonum-konst.c: Likewise.
* flonum-mult.c: Likewise.
2000-07-07 Kazu Hirata <kazu@hxi.com>

View File

@ -40,9 +40,7 @@ static void wrap_output PARAMS ((FILE *, char *, int));
/* Number of columns allowable. */
#define MAX_COLUMNS 72
/* Start saving dependencies, to be written to FILENAME. If this is
never called, then dependency tracking is simply skipped. */
@ -66,7 +64,7 @@ register_dependency (filename)
for (dep = dep_chain; dep != NULL; dep = dep->next)
{
if (! strcmp (filename, dep->file))
if (!strcmp (filename, dep->file))
return;
}
@ -154,7 +152,11 @@ wrap_output (f, string, spacer)
if (len == 0)
return;
if (column && MAX_COLUMNS - 1 /*spacer*/ - 2 /*` \'*/ < column + len)
if (column
&& (MAX_COLUMNS
- 1 /* spacer */
- 2 /* ` \' */
< column + len))
{
fprintf (f, " \\\n ");
column = 0;

View File

@ -23,19 +23,16 @@
/* plan for a . b => p(roduct)
+-------+-------+-/ /-+-------+-------+
| a | a | ... | a | a |
| A | A-1 | | 1 | 0 |
+-------+-------+-/ /-+-------+-------+
+-------+-------+-/ /-+-------+-------+
| b | b | ... | b | b |
| B | B-1 | | 1 | 0 |
+-------+-------+-/ /-+-------+-------+
+-------+-------+-/ /-+-------+-/ /-+-------+-------+
| p | p | ... | p | ... | p | p |
| A+B+1| A+B | | N | | 1 | 0 |
@ -70,8 +67,7 @@
I chose the ForTran accent "foo[bar]" instead of the C accent "*garply"
because I felt the ForTran way was more intuitive. The C way would
probably yield better code on most C compilers. Dean Elsner.
(C style also gives deeper insight [to me] ... oh well ...)
*/
(C style also gives deeper insight [to me] ... oh well ...) */
void
flonum_multip (a, b, product)
@ -95,10 +91,10 @@ flonum_multip (a, b, product)
int A; /* Which [] of a? */
int B; /* Which [] of b? */
if ((a->sign != '-' && a->sign != '+') || (b->sign != '-' && b->sign != '+'))
if ((a->sign != '-' && a->sign != '+')
|| (b->sign != '-' && b->sign != '+'))
{
/* ...
Got to fail somehow. Any suggestions? */
/* Got to fail somehow. Any suggestions? */
product->sign = 0;
return;
}
@ -130,7 +126,8 @@ flonum_multip (a, b, product)
if (A <= size_of_a && B <= size_of_b && B >= 0)
{
#ifdef TRACE
printf ("a:low[%d.]=%04x b:low[%d.]=%04x work_before=%08x\n", A, a->low[A], B, b->low[B], work);
printf ("a:low[%d.]=%04x b:low[%d.]=%04x work_before=%08x\n",
A, a->low[A], B, b->low[B], work);
#endif
/* Watch out for sign extension! Without the casts, on
the DEC Alpha, the multiplication result is *signed*
@ -162,19 +159,15 @@ flonum_multip (a, b, product)
exponent++;
}
}
/*
* [P]-> position # size_of_sum + 1.
* This is where 'carry' should go.
*/
/* [P]-> position # size_of_sum + 1.
This is where 'carry' should go. */
#ifdef TRACE
printf ("final carry =%04x\n", carry);
#endif
if (carry)
{
if (extra_product_positions > 0)
{
product->low[P] = carry;
}
else
{
/* No room at high order for carry littlenum. */
@ -190,11 +183,7 @@ flonum_multip (a, b, product)
}
}
else
{
P--;
}
product->leader = product->low + P;
product->exponent = exponent;
}
/* end of flonum_mult.c */