| Index: src/x64/lithium-x64.h
|
| diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h
|
| index 06cb1719233acd551fe5c7cd0af115a6f0877451..1a889b3964b5531482bd9dd788af84c3b9b551d5 100644
|
| --- a/src/x64/lithium-x64.h
|
| +++ b/src/x64/lithium-x64.h
|
| @@ -92,6 +92,7 @@ class LCodeGen;
|
| V(DoubleToSmi) \
|
| V(Drop) \
|
| V(DummyUse) \
|
| + V(Dummy) \
|
| V(ElementsKind) \
|
| V(ForInCacheArray) \
|
| V(ForInPrepareMap) \
|
| @@ -422,6 +423,13 @@ class LLazyBailout V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| };
|
|
|
|
|
| +class LDummy V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| + public:
|
| + explicit LDummy() { }
|
| + DECLARE_CONCRETE_INSTRUCTION(Dummy, "dummy")
|
| +};
|
| +
|
| +
|
| class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LDummyUse(LOperand* value) {
|
|
|