forked from OSchip/llvm-project
[builtins] Fix divtf3_test.c
Fixes 93eed63d2f
[builtins] Make __div[sdt]f3 handle denormal results.
This commit is contained in:
parent
8ca00c5cdc
commit
553833958f
|
@ -150,7 +150,7 @@ int main()
|
|||
if (test__divtf3(0x1.0p-16382L, 2.L, UINT64_C(0x0000800000000000), UINT64_C(0x0)))
|
||||
return 1;
|
||||
// smallest subnormal result
|
||||
if (test__divtf3(0x1.0p-1022L, 0x1p+52L, UINT64_C(0x0), UINT64_C(0x1)))
|
||||
if (test__divtf3(0x1.0p-16382L, 0x1p+112L, UINT64_C(0x0), UINT64_C(0x1)))
|
||||
return 1;
|
||||
|
||||
// any / any
|
||||
|
|
Loading…
Reference in New Issue