| Index: src/arm/lithium-arm.h
|
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
|
| index b6fc2e6ca0511aa607f4aae5973f6c4802013fc1..acd5c207ec6e1b6327fc368109e606727887839e 100644
|
| --- a/src/arm/lithium-arm.h
|
| +++ b/src/arm/lithium-arm.h
|
| @@ -131,6 +131,7 @@ class LCodeGen;
|
| V(OsrEntry) \
|
| V(Parameter) \
|
| V(Power) \
|
| + V(Prologue) \
|
| V(PushArgument) \
|
| V(RegExpLiteral) \
|
| V(Return) \
|
| @@ -389,6 +390,12 @@ class LGoto final : public LTemplateInstruction<0, 0, 0> {
|
| };
|
|
|
|
|
| +class LPrologue final : public LTemplateInstruction<0, 0, 0> {
|
| + public:
|
| + DECLARE_CONCRETE_INSTRUCTION(Prologue, "prologue")
|
| +};
|
| +
|
| +
|
| class LLazyBailout final : public LTemplateInstruction<0, 0, 0> {
|
| public:
|
| LLazyBailout() : gap_instructions_size_(0) { }
|
|
|