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.
This commit is contained in:
Jakub Jelinek 2025-03-20 10:36:29 +01:00 committed by Jakub Jelinek
parent 56145ae79b
commit d458020e19

View 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.