Mesa (master): mesa: move FLT_MAX_EXP to c99_math.h

Brian Paul brianp at kemper.freedesktop.org
Sat Feb 28 20:46:11 UTC 2015


Module: Mesa
Branch: master
Commit: 61d344ebba65aa35fef9b0bec92be98469b71f71
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=61d344ebba65aa35fef9b0bec92be98469b71f71

Author: Brian Paul <brianp at vmware.com>
Date:   Thu Feb 26 11:35:10 2015 -0700

mesa: move FLT_MAX_EXP to c99_math.h

Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>

---

 include/c99_math.h       |    4 ++++
 src/mesa/main/compiler.h |    4 ----
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/c99_math.h b/include/c99_math.h
index 35173c6..0a49950 100644
--- a/include/c99_math.h
+++ b/include/c99_math.h
@@ -156,5 +156,9 @@ llrintf(float f)
 #define M_LOG2E (1.4426950408889634074)
 #endif
 
+#ifndef FLT_MAX_EXP
+#define FLT_MAX_EXP 128
+#endif
+
 
 #endif /* #define _C99_MATH_H_ */
diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h
index 833d233..c2e3b39 100644
--- a/src/mesa/main/compiler.h
+++ b/src/mesa/main/compiler.h
@@ -188,10 +188,6 @@ static inline GLuint CPU_TO_LE32(GLuint x)
 # define LONGSTRING __extension__
 #endif
 
-#ifndef FLT_MAX_EXP
-#define FLT_MAX_EXP 128
-#endif
-
 #define IEEE_ONE 0x3f800000
 
 #ifndef Elements




More information about the mesa-commit mailing list