added FREXPF() macro (bug 4060)
[mesa.git] / src / mesa / math / m_debug_util.h
index 765f54dfb5a4d6df0442c8df79bc6cce93b2f3a2..1b7d742a80b63697b4a444abb9d584aabbb3706e 100644 (file)
@@ -286,9 +286,9 @@ static int significand_match( GLfloat a, GLfloat b )
       return 0;
    }
 
-   frexp( a, &a_ex );
-   frexp( b, &b_ex );
-   frexp( d, &d_ex );
+   FREXPF( a, &a_ex );
+   FREXPF( b, &b_ex );
+   FREXPF( d, &d_ex );
 
    if ( a_ex < b_ex ) {
       return a_ex - d_ex;