1 Aug
2017
1 Aug
'17
5:25 p.m.
On 08/01/17 08:13, Alex Henrie wrote:
@@ -252,7 +320,7 @@ float CDECL MSVCRT_powf( float x, float y ) { /* FIXME: If x < 0 and y is not integral, set EDOM */ float z = powf(x,y); - if (!finitef(z)) *MSVCRT__errno() = MSVCRT_EDOM; + if (!finitef(z)) math_error(_DOMAIN, "powf", x, 0, ret); ret is not defined here.
Could you please also add exception.name tests (in this case it should be set to pow instead of powf). Thanks, Piotr