aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDylan Baker <[email protected]>2019-07-08 14:25:16 -0700
committerDylan Baker <[email protected]>2019-11-05 16:39:55 +0000
commit37e54736a7bab3397e316ae4493c2e3d4aebfa5e (patch)
tree8a6c6c69afdc3719644dfe85c8f943b45328c798 /src
parentcb0dbdd369eb5c1eb524c0463d94b42e71c72049 (diff)
util/u_endian: Use _WIN32 instead of _MSC_VER
_WIN32 is defined by basically all windows compilers (MSVC, ICL, MinGW), wereas _MSC_VER is not defined by MinGW. Without this change MinGW falls through and doesn't define PIPE_ARCH at all, and is caught by some extra code in gallium. Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/util/u_endian.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/u_endian.h b/src/util/u_endian.h
index e11b381588d..7ec51380ffa 100644
--- a/src/util/u_endian.h
+++ b/src/util/u_endian.h
@@ -65,7 +65,7 @@
# define PIPE_ARCH_BIG_ENDIAN
#endif
-#elif defined(_MSC_VER)
+#elif defined(_WIN32)
#define PIPE_ARCH_LITTLE_ENDIAN