aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/math-emu/poly_sin.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-01-30 07:30:12 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:30:12 -0500
commite8d591dc710158bae6b53c8b7a0172351025c6e2 (patch)
tree37772d60594150ec668a4bdf4c90baa2a6a922ba /arch/x86/math-emu/poly_sin.c
parent3d0d14f983b55a570b976976284df4c434af3223 (diff)
x86: lindent arch/i386/math-emu, cleanup
manually clean up some of the damage that lindent caused. (this is a separate commit so that in the unlikely case of a typo we can bisect it down to the manual edits.) Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/math-emu/poly_sin.c')
-rw-r--r--arch/x86/math-emu/poly_sin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/math-emu/poly_sin.c b/arch/x86/math-emu/poly_sin.c
index 7273ae0c7692..b862039c728e 100644
--- a/arch/x86/math-emu/poly_sin.c
+++ b/arch/x86/math-emu/poly_sin.c
@@ -54,7 +54,7 @@ static const unsigned long long neg_terms_h[N_COEFF_NH] = {
54/*--- poly_sine() -----------------------------------------------------------+ 54/*--- poly_sine() -----------------------------------------------------------+
55 | | 55 | |
56 +---------------------------------------------------------------------------*/ 56 +---------------------------------------------------------------------------*/
57void poly_sine(FPU_REG * st0_ptr) 57void poly_sine(FPU_REG *st0_ptr)
58{ 58{
59 int exponent, echange; 59 int exponent, echange;
60 Xsig accumulator, argSqrd, argTo4; 60 Xsig accumulator, argSqrd, argTo4;
@@ -197,7 +197,7 @@ void poly_sine(FPU_REG * st0_ptr)
197/*--- poly_cos() ------------------------------------------------------------+ 197/*--- poly_cos() ------------------------------------------------------------+
198 | | 198 | |
199 +---------------------------------------------------------------------------*/ 199 +---------------------------------------------------------------------------*/
200void poly_cos(FPU_REG * st0_ptr) 200void poly_cos(FPU_REG *st0_ptr)
201{ 201{
202 FPU_REG result; 202 FPU_REG result;
203 long int exponent, exp2, echange; 203 long int exponent, exp2, echange;