| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 5f098339d959a3f521b13756ab2d89ef15030b4a..d9ffb693dc3bbba3777a205e6cf2a1c9dfde6b7f 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -4089,7 +4089,7 @@ static inline bool CompareRawStringContents(Vector<Char> a, Vector<Char> b) {
|
| const Char* pa = a.start();
|
| const Char* pb = b.start();
|
| int i = 0;
|
| -#ifndef CAN_READ_UNALIGNED
|
| +#ifndef V8_HOST_CAN_READ_UNALIGNED
|
| // If this architecture isn't comfortable reading unaligned ints
|
| // then we have to check that the strings are aligned before
|
| // comparing them blockwise.
|
| @@ -4108,7 +4108,7 @@ static inline bool CompareRawStringContents(Vector<Char> a, Vector<Char> b) {
|
| return false;
|
| }
|
| }
|
| -#ifndef CAN_READ_UNALIGNED
|
| +#ifndef V8_HOST_CAN_READ_UNALIGNED
|
| }
|
| #endif
|
| // Compare the remaining characters that didn't fit into a block.
|
|
|