ruby-changes:28168
From: naruse <ko1@a...>
Date: Thu, 11 Apr 2013 06:17:00 +0900 (JST)
Subject: [ruby-changes:28168] naruse:r40220 (trunk): * regint.h: fix typo: _M_AMD86 -> _M_AMD64.
naruse 2013-04-11 06:16:44 +0900 (Thu, 11 Apr 2013) New Revision: 40220 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=40220 Log: * regint.h: fix typo: _M_AMD86 -> _M_AMD64. * siphash.c: ditto. * st.c: ditto. Modified files: trunk/ChangeLog trunk/regint.h trunk/siphash.c trunk/st.c Index: ChangeLog =================================================================== --- ChangeLog (revision 40219) +++ ChangeLog (revision 40220) @@ -1,3 +1,11 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Thu Apr 11 06:15:51 2013 NARUSE, Yui <naruse@r...> + + * regint.h: fix typo: _M_AMD86 -> _M_AMD64. + + * siphash.c: ditto. + + * st.c: ditto. + Thu Apr 11 06:09:57 2013 NARUSE, Yui <naruse@r...> * ext/fiddle/extconf.rb: define RUBY_LIBFFI_MODVERSION macro. Index: st.c =================================================================== --- st.c (revision 40219) +++ st.c (revision 40220) @@ -1242,7 +1242,7 @@ strhash(st_data_t arg) https://github.com/ruby/ruby/blob/trunk/st.c#L1242 #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 Index: regint.h =================================================================== --- regint.h (revision 40219) +++ regint.h (revision 40220) @@ -49,7 +49,7 @@ https://github.com/ruby/ruby/blob/trunk/regint.h#L49 #endif #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 PLATFORM_UNALIGNED_WORD_ACCESS #endif Index: siphash.c =================================================================== --- siphash.c (revision 40219) +++ siphash.c (revision 40220) @@ -29,7 +29,7 @@ https://github.com/ruby/ruby/blob/trunk/siphash.c#L29 #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 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/