From 1f020b178664857b0e107778d04fb971a58e6230 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Wed, 23 Jul 2008 11:23:36 +0000 Subject: - trim any trailing whitespace --- libm/powerpc/e500/fpu/fedisblxcpt.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libm/powerpc/e500/fpu/fedisblxcpt.c') diff --git a/libm/powerpc/e500/fpu/fedisblxcpt.c b/libm/powerpc/e500/fpu/fedisblxcpt.c index d2c5caba7..aeca87bc6 100644 --- a/libm/powerpc/e500/fpu/fedisblxcpt.c +++ b/libm/powerpc/e500/fpu/fedisblxcpt.c @@ -31,15 +31,15 @@ fedisableexcept (int excepts) INTERNAL_SYSCALL (prctl, err, 2, PR_GET_FPEXC, &pflags); /* Save old enable bits. */ - if (pflags & PR_FP_EXC_OVF) + if (pflags & PR_FP_EXC_OVF) result |= FE_OVERFLOW; - if (pflags & PR_FP_EXC_UND) + if (pflags & PR_FP_EXC_UND) result |= FE_UNDERFLOW; - if (pflags & PR_FP_EXC_INV) + if (pflags & PR_FP_EXC_INV) result |= FE_INVALID; - if (pflags & PR_FP_EXC_DIV) + if (pflags & PR_FP_EXC_DIV) result |= FE_DIVBYZERO; - if (pflags & PR_FP_EXC_RES) + if (pflags & PR_FP_EXC_RES) result |= FE_INEXACT; if (excepts & FE_INEXACT) -- cgit v1.2.3