mirror of
https://github.com/fluencelabs/redis
synced 2025-06-13 01:01:22 +00:00
Use ARM unaligned accesses ifdefs for SPARC as well.
This commit is contained in:
@ -665,7 +665,7 @@ void bitopCommand(client *c) {
|
||||
* result in GCC compiling the code using multiple-words load/store
|
||||
* operations that are not supported even in ARM >= v6. */
|
||||
j = 0;
|
||||
#ifndef __arm__
|
||||
#ifndef USE_ALIGNED_ACCESS
|
||||
if (minlen >= sizeof(unsigned long)*4 && numkeys <= 16) {
|
||||
unsigned long *lp[16];
|
||||
unsigned long *lres = (unsigned long*) res;
|
||||
|
Reference in New Issue
Block a user