| Index: src/ic/ppc/ic-compiler-ppc.cc
|
| diff --git a/src/ic/ppc/ic-compiler-ppc.cc b/src/ic/ppc/ic-compiler-ppc.cc
|
| index 59054b2058e865ec7c70e8d05d080fdd4baef20a..578b73d40e95966721200ba7e681626b6c70927c 100644
|
| --- a/src/ic/ppc/ic-compiler-ppc.cc
|
| +++ b/src/ic/ppc/ic-compiler-ppc.cc
|
| @@ -112,7 +112,10 @@ Handle<Code> PropertyICCompiler::CompileKeyedStorePolymorphic(
|
| Label next_map;
|
| __ bne(&next_map);
|
| Handle<WeakCell> cell = Map::WeakCellForMap(transitioned_maps->at(i));
|
| - __ LoadWeakValue(transition_map(), cell, &miss);
|
| + Register transition_map = scratch1();
|
| + DCHECK(!FLAG_vector_stores &&
|
| + transition_map.is(StoreTransitionDescriptor::MapRegister()));
|
| + __ LoadWeakValue(transition_map, cell, &miss);
|
| __ Jump(handler_stubs->at(i), RelocInfo::CODE_TARGET, al);
|
| __ bind(&next_map);
|
| }
|
|
|