Index: src/arm/lithium-codegen-arm.cc |
diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc |
index 09c83a51ae312892a6b0fef8eb05664d41221134..c2ef3fcfc2a51fa8300f0f764b525b6cd5f81e9b 100644 |
--- a/src/arm/lithium-codegen-arm.cc |
+++ b/src/arm/lithium-codegen-arm.cc |
@@ -2390,7 +2390,10 @@ void LCodeGen::DoLoadKeyedFastElement(LLoadKeyedFastElement* instr) { |
} |
-void LCodeGen::DoLoadPixelArrayElement(LLoadPixelArrayElement* instr) { |
+void LCodeGen::DoLoadKeyedSpecializedArrayElement( |
+ LLoadKeyedSpecializedArrayElement* instr) { |
+ ASSERT(instr->array_type() == kExternalPixelArray); |
+ |
Register external_pointer = ToRegister(instr->external_pointer()); |
Register key = ToRegister(instr->key()); |
Register result = ToRegister(instr->result()); |
@@ -3058,7 +3061,10 @@ void LCodeGen::DoStoreKeyedFastElement(LStoreKeyedFastElement* instr) { |
} |
-void LCodeGen::DoStorePixelArrayElement(LStorePixelArrayElement* instr) { |
+void LCodeGen::DoStoreKeyedSpecializedArrayElement( |
+ LStoreKeyedSpecializedArrayElement* instr) { |
+ ASSERT(instr->array_type() == kExternalPixelArray); |
+ |
Register external_pointer = ToRegister(instr->external_pointer()); |
Register key = ToRegister(instr->key()); |
Register value = ToRegister(instr->value()); |