]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
i386: Fix comment typo on truncsfbf2 pattern
authorJakub Jelinek <jakub@redhat.com>
Mon, 5 May 2025 07:17:21 +0000 (09:17 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Mon, 5 May 2025 07:17:21 +0000 (09:17 +0200)
I've noticed a typo on the flag name, fixed thusly.

2025-05-05  Jakub Jelinek  <jakub@redhat.com>

* config/i386/i386.md (truncsfbf2): Fix comment typo,
unsafte -> unsafe.

gcc/config/i386/i386.md

index 44ee94a3e41906ac910a0613ff25bb9b34b35549..bb02ab0d4e1cacad1b8a14c169f56eacca969676 100644 (file)
 
 /* vcvtneps2bf16 doesn't honor SNAN, and turn sNAN into qNAN quietly,
    and it always round to even.
-   flag_unsafte_math_optimization is needed for psrld.
+   flag_unsafe_math_optimization is needed for psrld.
    If we don't expect qNaNs nor sNaNs and can assume rounding
    to nearest, we can expand the conversion inline as
    (fromi + 0x7fff + ((fromi >> 16) & 1)) >> 16.  */