aboutsummaryrefslogtreecommitdiffstats
path: root/siphash.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-10 21:16:44 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-10 21:16:44 +0000
commit29f347af110eb98127fc7c005136ff355e063474 (patch)
tree828aa69b072140347e40700235e91dde42d5ad45 /siphash.c
parenta0f7f2921518443a60c807d272f0345aed61dc21 (diff)
downloadruby-29f347af110eb98127fc7c005136ff355e063474.tar.gz
* regint.h: fix typo: _M_AMD86 -> _M_AMD64.
* siphash.c: ditto. * st.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40220 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'siphash.c')
-rw-r--r--siphash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/siphash.c b/siphash.c
index c100b14ee7..2018ade431 100644
--- a/siphash.c
+++ b/siphash.c
@@ -29,7 +29,7 @@
#ifndef UNALIGNED_WORD_ACCESS
# if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
- defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD86) || \
+ defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || \
defined(__mc68020__)
# define UNALIGNED_WORD_ACCESS 1
# endif