Index: src/hydrogen-instructions.h |
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h |
index c69a94188e82ac541b1f80bdca312a92d485985b..c38b2485bd006ed813f3a4d3797cbcfd734e51de 100644 |
--- a/src/hydrogen-instructions.h |
+++ b/src/hydrogen-instructions.h |
@@ -6611,14 +6611,9 @@ class HStoreNamedField V8_FINAL : public HTemplateInstruction<3> { |
} |
} |
- void SetTransition(HConstant* map_constant, CompilationInfo* info) { |
+ void SetTransition(HConstant* transition) { |
ASSERT(!has_transition()); // Only set once. |
- Handle<Map> map = Handle<Map>::cast(map_constant->handle(info->isolate())); |
- if (map->CanBeDeprecated()) { |
- Map::AddDependentCompilationInfo( |
- map, DependentCode::kTransitionGroup, info); |
- } |
- SetOperandAt(2, map_constant); |
+ SetOperandAt(2, transition); |
has_transition_ = true; |
} |