diff options
author | Ben Elliston <bje@au.ibm.com> | 2002-01-20 04:09:23 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2002-01-20 04:09:23 +0000 |
commit | 1636f0bbebdb8486aee30722a9f9a2d15aa9716e (patch) | |
tree | 3f69a31bf598676b80a7f71b43a6ae46802bea3c /sim | |
parent | bbe5c628c2a811ec014a919a4606bd54f4c83fa5 (diff) | |
download | gdb-1636f0bbebdb8486aee30722a9f9a2d15aa9716e.zip gdb-1636f0bbebdb8486aee30722a9f9a2d15aa9716e.tar.gz gdb-1636f0bbebdb8486aee30722a9f9a2d15aa9716e.tar.bz2 |
2002-01-20 Ben Elliston <bje@redhat.com>
* sim-fpu.h (SIM_FPU_IS_QNAN): Replace "Quite" with "Quiet" in
the comment for this enumerator.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/common/ChangeLog | 5 | ||||
-rw-r--r-- | sim/common/sim-fpu.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index c48197d..7da3724 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2002-01-20 Ben Elliston <bje@redhat.com> + + * sim-fpu.h (SIM_FPU_IS_QNAN): Replace "Quite" with "Quiet" in + the comment for this enumerator. + 2002-01-14 Ben Elliston <bje@redhat.com> * sim-fpu.h: Fix comment about sim_fpu_* constants. diff --git a/sim/common/sim-fpu.h b/sim/common/sim-fpu.h index 9b455c7..0be3fb1 100644 --- a/sim/common/sim-fpu.h +++ b/sim/common/sim-fpu.h @@ -354,7 +354,7 @@ INLINE_SIM_FPU (int) sim_fpu_is_gt (const sim_fpu *l, const sim_fpu *r); #ifndef SIM_FPU_IS_SNAN enum { SIM_FPU_IS_SNAN = 1, /* Noisy not-a-number */ - SIM_FPU_IS_QNAN = 2, /* Quite not-a-number */ + SIM_FPU_IS_QNAN = 2, /* Quiet not-a-number */ SIM_FPU_IS_NINF = 3, /* -infinity */ SIM_FPU_IS_PINF = 4, /* +infinity */ SIM_FPU_IS_NNUMBER = 5, /* -number - [ -MAX .. -MIN ] */ |