From 887e930e02d7da5bc988fb21e7678279daea9a09 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 14 Mar 2008 01:04:02 +0000 Subject: * string.c (UNALIGNED_WORD_ACCESS): IA64 cannot access unaligned word. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15770 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'string.c') diff --git a/string.c b/string.c index 39a96ee84..fc7ed7c64 100644 --- a/string.c +++ b/string.c @@ -1689,7 +1689,7 @@ rb_str_concat(VALUE str1, VALUE str2) return rb_str_append(str1, str2); } -#if defined __i386__ || defined _M_IX86 || defined __ia64 +#if defined __i386__ || defined _M_IX86 #define UNALIGNED_WORD_ACCESS 1 #endif #ifndef UNALIGNED_WORD_ACCESS -- cgit