From 04c55c0783340a7737c3b8d3467cb9965c758ca2 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 15 Jan 2016 13:12:17 +0000 Subject: disable unaligned word access * regint.h: disable unaligned word access with gcc 6 or later. [Bug #11831] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53545 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- regint.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'regint.h') diff --git a/regint.h b/regint.h index 80d3523126..97b2e1ba62 100644 --- a/regint.h +++ b/regint.h @@ -48,6 +48,10 @@ #endif #endif +#if !defined(UNALIGNED_WORD_ACCESS) && defined(__GNUC__) && __GNUC__ >= 6 +# define UNALIGNED_WORD_ACCESS 0 +#endif + #ifndef UNALIGNED_WORD_ACCESS #if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \ defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || \ -- cgit v1.2.3