summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinmin Gong <gongminmin@msn.com>2018-07-04 21:37:54 -0700
committerThomas Daede <daede003@umn.edu>2018-07-05 10:30:04 -0700
commit46e70fa6573e206c2555cd99a53204ffd6bf58fd (patch)
tree4a03a6741c90a9740513402074cbd34e1dff8505
parentea8b03fce93444cb3cf0131909e15b4f8856e863 (diff)
downloadlibvorbis-git-46e70fa6573e206c2555cd99a53204ffd6bf58fd.tar.gz
Fix the compiling errors on msvc ARM64 configuration.
-rw-r--r--lib/os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/os.h b/lib/os.h
index 416a401d..e0989263 100644
--- a/lib/os.h
+++ b/lib/os.h
@@ -120,7 +120,7 @@ static inline int vorbis_ftoi(double f){ /* yes, double! Otherwise,
/* MSVC inline assembly. 32 bit only; inline ASM isn't implemented in the
* 64 bit compiler and doesn't work on arm. */
#if defined(_MSC_VER) && !defined(_WIN64) && \
- !defined(_WIN32_WCE) && !defined(_M_ARM)
+ !defined(_WIN32_WCE) && !defined(_M_ARM) && !defined(_M_ARM64)
# define VORBIS_FPU_CONTROL
typedef ogg_int16_t vorbis_fpu_control;