summaryrefslogtreecommitdiff
path: root/libc/sysdeps/powerpc/fpu/feholdexcpt.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/powerpc/fpu/feholdexcpt.c')
-rw-r--r--libc/sysdeps/powerpc/fpu/feholdexcpt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/powerpc/fpu/feholdexcpt.c b/libc/sysdeps/powerpc/fpu/feholdexcpt.c
index 88dbf59fc..671724b28 100644
--- a/libc/sysdeps/powerpc/fpu/feholdexcpt.c
+++ b/libc/sysdeps/powerpc/fpu/feholdexcpt.c
@@ -1,5 +1,5 @@
/* Store current floating-point environment and clear exceptions.
- Copyright (C) 1997, 2005, 2008 Free Software Foundation, Inc.
+ Copyright (C) 1997-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -33,7 +33,7 @@ feholdexcept (fenv_t *envp)
new.l[1] = old.l[1] & 7;
new.l[0] = old.l[0];
- /* If the old env had any eabled exceptions, then mask SIGFPE in the
+ /* If the old env had any enabled exceptions, then mask SIGFPE in the
MSR FE0/FE1 bits. This may allow the FPU to run faster because it
always takes the default action and can not generate SIGFPE. */
if ((old.l[1] & _FPU_MASK_ALL) != 0)