[libc][Obvious] Fix AMDGPU control constant for vendor sqrt

Summary:
This is supposed to be enabled to say that we want correct sqrt by
default.
This commit is contained in:
Joseph Huber 2023-07-25 07:58:41 -05:00
parent 18914f7955
commit 7c8a52f90c

View File

@ -25,7 +25,7 @@ extern const uint8_t __oclc_unsafe_math_opt = 0;
extern const uint8_t __oclc_daz_opt = 0;
// Disable rounding optimizations for 32-bit square roots.
extern const uint8_t __oclc_correctly_rounded_sqrt32 = 0;
extern const uint8_t __oclc_correctly_rounded_sqrt32 = 1;
// Disable finite math optimizations.
extern const uint8_t __oclc_finite_only_opt = 0;