Index: src/mips/lithium-codegen-mips.cc |
diff --git a/src/mips/lithium-codegen-mips.cc b/src/mips/lithium-codegen-mips.cc |
index f398441bed42531a3971ecc34cce1c14d322a141..e19caf34c2a901be98b7a9eb414fcb59c9e10c35 100644 |
--- a/src/mips/lithium-codegen-mips.cc |
+++ b/src/mips/lithium-codegen-mips.cc |
@@ -4639,11 +4639,10 @@ void LCodeGen::DoCheckMaps(LCheckMaps* instr) { |
for (int i = 0; i < map_set->length() - 1; i++) { |
Handle<Map> map = map_set->at(i); |
__ CompareMapAndBranch( |
- reg, scratch, map, &success, eq, &success, instr->hydrogen()->mode()); |
+ reg, scratch, map, &success, eq, &success, REQUIRE_EXACT_MAP); |
} |
Handle<Map> map = map_set->last(); |
- DoCheckMapCommon(reg, scratch, map, instr->hydrogen()->mode(), |
- instr->environment()); |
+ DoCheckMapCommon(reg, scratch, map, REQUIRE_EXACT_MAP, instr->environment()); |
__ bind(&success); |
} |