| Index: src/a64/lithium-a64.h
|
| diff --git a/src/a64/lithium-a64.h b/src/a64/lithium-a64.h
|
| index 722580c417a63dd190dcae51f2deffa1bb5f5277..aa4d5e665ef79bc66f0978fb733fac6a62863ae4 100644
|
| --- a/src/a64/lithium-a64.h
|
| +++ b/src/a64/lithium-a64.h
|
| @@ -193,6 +193,7 @@ class LCodeGen;
|
| V(Typeof) \
|
| V(TypeofIsAndBranch) \
|
| V(Uint32ToDouble) \
|
| + V(UnknownOSRValue) \
|
| V(ValueOf) \
|
| V(CheckMapValue) \
|
| V(LoadFieldByIndex) \
|
| @@ -322,6 +323,13 @@ class LTemplateInstruction: public LInstruction {
|
| };
|
|
|
|
|
| +class LUnknownOSRValue: public LTemplateInstruction<1, 0, 0> {
|
| + public:
|
| + virtual bool HasInterestingComment(LCodeGen* gen) const { return false; }
|
| + DECLARE_CONCRETE_INSTRUCTION(UnknownOSRValue, "unknown-osr-value")
|
| +};
|
| +
|
| +
|
| template<int I, int T>
|
| class LControlInstruction: public LTemplateInstruction<0, I, T> {
|
| public:
|
|
|