| Index: src/a64/lithium-a64.h
|
| diff --git a/src/a64/lithium-a64.h b/src/a64/lithium-a64.h
|
| index 45246425631386566603ac708e72a3f7e5ea3d50..d8f3d25fda7807c6554205727e3e5f3822fd218a 100644
|
| --- a/src/a64/lithium-a64.h
|
| +++ b/src/a64/lithium-a64.h
|
| @@ -1694,7 +1694,7 @@ class LLoadGlobalGeneric V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
|
|
|
|
| template<int T>
|
| -class LLoadKeyed V8_FINAL : public LTemplateInstruction<1, 2, T> {
|
| +class LLoadKeyed : public LTemplateInstruction<1, 2, T> {
|
| public:
|
| LLoadKeyed(LOperand* elements, LOperand* key) {
|
| this->inputs_[0] = elements;
|
| @@ -1808,7 +1808,7 @@ class LMapEnumLength V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
|
|
|
|
| template<int T>
|
| -class LUnaryMathOperation V8_FINAL : public LTemplateInstruction<1, 1, T> {
|
| +class LUnaryMathOperation : public LTemplateInstruction<1, 1, T> {
|
| public:
|
| explicit LUnaryMathOperation(LOperand* value) {
|
| this->inputs_[0] = value;
|
| @@ -2224,7 +2224,7 @@ class LStackCheck V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
|
|
|
|
| template<int T>
|
| -class LStoreKeyed V8_FINAL : public LTemplateInstruction<0, 3, T> {
|
| +class LStoreKeyed : public LTemplateInstruction<0, 3, T> {
|
| public:
|
| LStoreKeyed(LOperand* elements, LOperand* key, LOperand* value) {
|
| this->inputs_[0] = elements;
|
|
|