diff options
author | Jakub Jelinek <jakub@redhat.com> | 2025-03-20 10:36:29 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2025-03-20 10:36:29 +0100 |
commit | d458020e19b686e0d46320e7d26fa876c19965a0 (patch) | |
tree | 90ee868bbdbba9ebd1f9734e16ca24e4fb618340 /libstdc++-v3 | |
parent | 56145ae79b89b823f306c2c241f6a1fe5d604816 (diff) | |
download | gcc-d458020e19b686e0d46320e7d26fa876c19965a0.zip gcc-d458020e19b686e0d46320e7d26fa876c19965a0.tar.gz gcc-d458020e19b686e0d46320e7d26fa876c19965a0.tar.bz2 |
libstdc++: Fix comment typo
Another IEE typo.
2025-03-20 Jakub Jelinek <jakub@redhat.com>
* testsuite/18_support/numeric_limits/traps.cc (main): Fix comment
typo.
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/testsuite/18_support/numeric_limits/traps.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/testsuite/18_support/numeric_limits/traps.cc b/libstdc++-v3/testsuite/18_support/numeric_limits/traps.cc index ecfbdeb..4963b90 100644 --- a/libstdc++-v3/testsuite/18_support/numeric_limits/traps.cc +++ b/libstdc++-v3/testsuite/18_support/numeric_limits/traps.cc @@ -48,7 +48,7 @@ int main() For floating points, trapping is a different, more complicated story. If is_iecxxx is true, then division by zero would not trap (infinity). If is_iecxxx is false, we don't know (VAX may trap for - 0/0 -- I have to check). For most cases (i.e. IEE-754), trapping + 0/0 -- I have to check). For most cases (i.e. IEEE-754), trapping for floating points have to do with whether there is a support for signaling NaN. - Gaby. |