| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index de22fbf2f5b65706dae7929929114ce23fe79bd1..809c70ed7365d905725db9b3034240ad5783be88 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -7103,8 +7103,8 @@ class SharedFunctionInfo: public HeapObject {
|
| (compiler_hint + kCompilerHintsSmiTagSize) / kBitsPerByte
|
| #elif defined(V8_TARGET_BIG_ENDIAN)
|
| #define BYTE_OFFSET(compiler_hint) \
|
| - kCompilerHintsOffset + +(kCompilerHintsSize - 1) - \
|
| - ((kStrictModeFunction + kCompilerHintsSmiTagSize) / kBitsPerByte)
|
| + kCompilerHintsOffset + (kCompilerHintsSize - 1) - \
|
| + ((compiler_hint + kCompilerHintsSmiTagSize) / kBitsPerByte)
|
| #else
|
| #error Unknown byte ordering
|
| #endif
|
|
|