mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
string.c: this assumption is false [ci skip]
Looking at the lines right above, it is clear than a blue sky that we cannot assume `p` to be aligned at all when UNALIGNED_WORD_ACCESS is true. It is a wrong idea to use __builtin_assume_aligned for that situation. See also: https://travis-ci.org/ruby/ruby/jobs/451710732#L2007 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4d3c254ebe
commit
74fe1cc3d9
1 changed files with 1 additions and 1 deletions
2
string.c
2
string.c
|
@ -490,7 +490,7 @@ search_nonascii(const char *p, const char *e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_BUILTIN___BUILTIN_ASSUME_ALIGNED
|
#if defined(HAVE_BUILTIN___BUILTIN_ASSUME_ALIGNED) &&! UNALIGNED_WORD_ACCESS
|
||||||
#define aligned_ptr(value) \
|
#define aligned_ptr(value) \
|
||||||
__builtin_assume_aligned((value), sizeof(uintptr_t))
|
__builtin_assume_aligned((value), sizeof(uintptr_t))
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Add table
Reference in a new issue