| Index: src/deoptimizer.h
|
| diff --git a/src/deoptimizer.h b/src/deoptimizer.h
|
| index 67690ded0de2e9dbccab31eb9342a40e223c15a6..a36362fc93a30e396ae804be43d22c17edb057b9 100644
|
| --- a/src/deoptimizer.h
|
| +++ b/src/deoptimizer.h
|
| @@ -134,7 +134,7 @@ class Deoptimizer : public Malloced {
|
|
|
| static const int kBailoutTypesWithCodeEntry = SOFT + 1;
|
|
|
| - struct JumpTableEntry {
|
| + struct JumpTableEntry : public ZoneObject {
|
| inline JumpTableEntry(Address entry,
|
| Deoptimizer::BailoutType type,
|
| bool frame)
|
| @@ -508,6 +508,8 @@ class FrameDescription {
|
|
|
| void SetCallerFp(unsigned offset, intptr_t value);
|
|
|
| + void SetCallerConstantPool(unsigned offset, intptr_t value);
|
| +
|
| intptr_t GetRegister(unsigned n) const {
|
| #if DEBUG
|
| // This convoluted ASSERT is needed to work around a gcc problem that
|
|
|