about summary refs log tree commit diff
path: root/ports/sysdeps/am33/fpu/fraiseexcpt.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/sysdeps/am33/fpu/fraiseexcpt.c')
-rw-r--r--ports/sysdeps/am33/fpu/fraiseexcpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/sysdeps/am33/fpu/fraiseexcpt.c b/ports/sysdeps/am33/fpu/fraiseexcpt.c
index f62e83a190..1610adf5e2 100644
--- a/ports/sysdeps/am33/fpu/fraiseexcpt.c
+++ b/ports/sysdeps/am33/fpu/fraiseexcpt.c
@@ -35,7 +35,7 @@ __feraiseexcept (int excepts)
   /* First: invalid exception.  */
   if (excepts & FE_INVALID)
     {
-      /* One example of a invalid operation is 0 * Infinity.  */
+      /* One example of an invalid operation is 0 * Infinity.  */
       float x = HUGE_VALF, y = 0.0f;
       __asm__ __volatile__ ("fmul %1,%0" : "+f" (x) : "f" (y));
     }