Patched by importing latest msun version
This commit is contained in:
Viral B. Shah
2021-02-06 17:59:39 -05:00
parent 6a85b33182
commit 98f87135b0
3 changed files with 41 additions and 13 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <stdio.h>
#include <math.h>
#include <assert.h>
int
main()
{
float x = 0xd.65874p-4f;
float y = 4.0f;
float z = powf (x, y);
assert(z==0x1.f74424p-2);
}