mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
14 lines
570 B
Diff
14 lines
570 B
Diff
|
diff --git a/lib/os.h b/lib/os.h
|
||
|
index 416a401..44d54fe 100644
|
||
|
--- a/lib/os.h
|
||
|
+++ b/lib/os.h
|
||
|
@@ -147,7 +147,7 @@ static __inline void vorbis_fpu_restore(vorbis_fpu_control fpu){
|
||
|
|
||
|
/* Optimized code path for x86_64 builds. Uses SSE2 intrinsics. This can be
|
||
|
done safely because all x86_64 CPUs supports SSE2. */
|
||
|
-#if (defined(_MSC_VER) && defined(_WIN64)) || (defined(__GNUC__) && defined (__x86_64__))
|
||
|
+#if (defined(_MSC_VER) && defined(_M_X64)) || (defined(__GNUC__) && defined (__x86_64__))
|
||
|
# define VORBIS_FPU_CONTROL
|
||
|
|
||
|
typedef ogg_int16_t vorbis_fpu_control;
|