mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Intel compiler bruteforce - fix signbitl function (#292)
This commit is contained in:
committed by
Kévin Petit
parent
fcae94452d
commit
94beef7cd3
@@ -2957,8 +2957,11 @@ int reference_isnormall( long double x){ return 0 != isnormal( (double) x ); }
|
||||
int reference_isnotequall( long double x, long double y){ return x != y; }
|
||||
int reference_isorderedl( long double x, long double y){ return x == x && y == y; }
|
||||
int reference_isunorderedl( long double x, long double y){ return isnan(x) || isnan( y ); }
|
||||
#if defined( __INTEL_COMPILER )
|
||||
int reference_signbitl( long double x){ return 0 != signbitl( x ); }
|
||||
#else
|
||||
int reference_signbitl( long double x){ return 0 != signbit( x ); }
|
||||
|
||||
#endif
|
||||
long double reference_copysignl( long double x, long double y);
|
||||
long double reference_roundl( long double x );
|
||||
long double reference_cbrtl(long double x);
|
||||
|
||||
Reference in New Issue
Block a user