aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/ns32k
diff options
context:
space:
mode:
authorKazu Hirata <kazu@gcc.gnu.org>2003-06-17 19:03:12 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-06-17 19:03:12 +0000
commit67f63f32d59b22241faa6f3390757ce9535f8898 (patch)
tree5bd476260d08ca0498e8f54c872e5c713ceed268 /gcc/config/ns32k
parent0d5c606b64f7ff6e7f1cd44fd4b11b24fca72ae1 (diff)
downloadgcc-67f63f32d59b22241faa6f3390757ce9535f8898.zip
gcc-67f63f32d59b22241faa6f3390757ce9535f8898.tar.gz
gcc-67f63f32d59b22241faa6f3390757ce9535f8898.tar.bz2
ChangeLog.3: Fix comment typos.
* ChangeLog.3: Fix comment typos. * ChangeLog.6: Likewise. * config/d30v/d30v.c: Likewise. * config/h8300/h8300.md: Likewise. * config/m32r/m32r.md: Likewise. * config/mips/mips.c: Likewise. * config/mips/mips.md: Likewise. * config/ns32k/NOTES: Likewise. From-SVN: r68104
Diffstat (limited to 'gcc/config/ns32k')
-rw-r--r--gcc/config/ns32k/NOTES4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/ns32k/NOTES b/gcc/config/ns32k/NOTES
index 824c80c..6c5ff9b 100644
--- a/gcc/config/ns32k/NOTES
+++ b/gcc/config/ns32k/NOTES
@@ -12,7 +12,7 @@ Ian Dall <ian@beware.dropbear.id.au>
The ns32x81 fpu handles most operands in hardware, but traps on NaN,
Inf and Denormalized numbers. The correct behavior can be handled by
the trap handler. This is mostly transparent to the compiler, but in
-the case of floating point comparisions, the trap handler and the
+the case of floating point comparisons, the trap handler and the
compiler must co-operate.
Comparing a Nan with anything (including another Nan) is an unordered
@@ -90,7 +90,7 @@ For example the emitted code for the case of RLT is
which is, in effect "branch if not less than and not unordered."
-These extra comparisions are safe if the trap handler doesn't set the
+These extra comparisons are safe if the trap handler doesn't set the
L flag, since in that case the additional "bhi" instructions are never
taken. Also, these extra branch instructions are controlled by the
"-mieee-compare" option.