summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTautvydas Zilys <tautvydas.zilys@gmail.com>2018-09-10 11:41:09 -0700
committerIvan Maidanski <ivmai@mail.ru>2018-10-26 01:55:09 +0300
commite078c7bb791f99e7a6128bb9d74f690efb90fb7c (patch)
tree0114da3cf42603a1585a6fc9f3f01cef2415e392 /src
parentf7a37670e263a01dc4c55d54bf6819b028570a21 (diff)
downloadlibatomic_ops-e078c7bb791f99e7a6128bb9d74f690efb90fb7c.tar.gz
Support UWP/arm64 target
* src/atomic_ops.h [_MSC_VER && _M_ARM64]: Include msftc/x86_64.h.
Diffstat (limited to 'src')
-rw-r--r--src/atomic_ops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atomic_ops.h b/src/atomic_ops.h
index d7a70f4..6d0c60d 100644
--- a/src/atomic_ops.h
+++ b/src/atomic_ops.h
@@ -383,7 +383,7 @@
#if defined(_MSC_VER) || defined(__DMC__) || defined(__BORLANDC__) \
|| (defined(__WATCOMC__) && defined(__NT__))
-# if defined(_AMD64_) || defined(_M_X64)
+# if defined(_AMD64_) || defined(_M_X64) || defined(_M_ARM64)
# include "atomic_ops/sysdeps/msftc/x86_64.h"
# elif defined(_M_IX86) || defined(x86)
# include "atomic_ops/sysdeps/msftc/x86.h"