Skip to content
Snippets Groups Projects
Commit 94bc9aca authored by Sven Joachim's avatar Sven Joachim Committed by Andreas Boll
Browse files

mesa: Fix ieee fp on Alpha


Commit 1f82bf12 inadvertently broke it, checking for __IEEE_FLOAT on all
Alpha machines instead of only on VMS as before.

NOTE: This is a candidate for the 9.1 branch.

Reviewed-by: default avatarMatt Turner <mattst88@gmail.com>
Reviewed-by: default avatarAndreas Boll <andreas.boll.dev@gmail.com>
Signed-off-by: default avatarSven Joachim <svenjoac@gmx.de>
(cherry picked from commit 0829b893)
parent 8b6aa864
No related branches found
No related tags found
No related merge requests found
......@@ -316,7 +316,7 @@ static INLINE GLuint CPU_TO_LE32(GLuint x)
defined(__arm__) || \
defined(__sh__) || defined(__m32r__) || \
(defined(__sun) && defined(_IEEE_754)) || \
(defined(__alpha__) && defined(__IEEE_FLOAT))
defined(__alpha__)
#define USE_IEEE
#define IEEE_ONE 0x3f800000
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment