]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Fix comment typo
authorJakub Jelinek <jakub@redhat.com>
Thu, 20 Mar 2025 09:36:29 +0000 (10:36 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Fri, 21 Mar 2025 12:09:22 +0000 (12:09 +0000)
Another IEE typo.

2025-03-20  Jakub Jelinek  <jakub@redhat.com>

* testsuite/18_support/numeric_limits/traps.cc (main): Fix comment
typo.

(cherry picked from commit d458020e19b686e0d46320e7d26fa876c19965a0)

libstdc++-v3/testsuite/18_support/numeric_limits/traps.cc

index a4b30fd01c3fb49d5f9f3108512d7d03520b95df..adb2dba9f8fc28f31b9fa456e710b4d29567c721 100644 (file)
@@ -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.