| Index: src/ia32/lithium-codegen-ia32.cc
|
| diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc
|
| index fad23ade32c6e6c22ff6bd70461a9921756be0da..f9c43741e20c39b99a1348456f6254958f2a4fa1 100644
|
| --- a/src/ia32/lithium-codegen-ia32.cc
|
| +++ b/src/ia32/lithium-codegen-ia32.cc
|
| @@ -5638,15 +5638,15 @@ void LCodeGen::DoCheckMaps(LCheckMaps* instr) {
|
| __ bind(deferred->check_maps());
|
| }
|
|
|
| - UniqueSet<Map> map_set = instr->hydrogen()->map_set();
|
| + const UniqueSet<Map>* map_set = instr->hydrogen()->map_set();
|
| Label success;
|
| - for (int i = 0; i < map_set.size() - 1; i++) {
|
| - Handle<Map> map = map_set.at(i).handle();
|
| + for (int i = 0; i < map_set->size() - 1; i++) {
|
| + Handle<Map> map = map_set->at(i).handle();
|
| __ CompareMap(reg, map);
|
| __ j(equal, &success, Label::kNear);
|
| }
|
|
|
| - Handle<Map> map = map_set.at(map_set.size() - 1).handle();
|
| + Handle<Map> map = map_set->at(map_set->size() - 1).handle();
|
| __ CompareMap(reg, map);
|
| if (instr->hydrogen()->has_migration_target()) {
|
| __ j(not_equal, deferred->entry());
|
|
|