mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
7cefc9f950
commit
c0b8e82296
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Mar 14 10:03:59 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* string.c (UNALIGNED_WORD_ACCESS): IA64 cannot access unaligned word.
|
||||
|
||||
Thu Mar 13 21:00:50 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* array.c (rb_ary_slice_bang): should not use rb_ary_subseq()
|
||||
|
|
2
string.c
2
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
|
||||
|
|
Loading…
Reference in a new issue