summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-03-14 01:04:02 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-03-14 01:04:02 +0000
commitc0b8e8229657658e9c0cfeb4c460bde847546b34 (patch)
treeefb5a4a7ebe0571fbf0891ae36c41990166d7247 /string.c
parent7cefc9f95018a891c24ea54c33d85e9461ba7420 (diff)
* string.c (UNALIGNED_WORD_ACCESS): IA64 cannot access unaligned word.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15770 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string.c b/string.c
index 39a96ee848..fc7ed7c641 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