Skip to content

Commit 2c69d27

Browse files
committed
Fix single precision test.
1 parent da6c195 commit 2c69d27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/test/builtins/Unit/divsf3_test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ int main()
108108
return 1;
109109

110110
// test 1 / (1 - eps(0.5)) = 1 + eps(1)
111-
if (test__divsf3(1.0F, 0x1.ffffep-1F, UINT32_C(0x3f800001)))
111+
if (test__divsf3(1.0F, 0x1.fffffep-1F, UINT32_C(0x3f800001)))
112112
return 1;
113113

114114
return 0;

0 commit comments

Comments
 (0)