| Index: src/hydrogen-bce.cc
|
| diff --git a/src/hydrogen-bce.cc b/src/hydrogen-bce.cc
|
| index 9d634a8fa84f02654fb7179c2cdb91487ee54609..729317eec67776d1c0ec689634c262a453fed3ca 100644
|
| --- a/src/hydrogen-bce.cc
|
| +++ b/src/hydrogen-bce.cc
|
| @@ -308,14 +308,16 @@ BoundsCheckTable::BoundsCheckTable(Zone* zone)
|
| BoundsCheckBbData** BoundsCheckTable::LookupOrInsert(BoundsCheckKey* key,
|
| Zone* zone) {
|
| return reinterpret_cast<BoundsCheckBbData**>(
|
| - &(Lookup(key, key->Hash(), true, ZoneAllocationPolicy(zone))->value));
|
| + &(ZoneHashMap::LookupOrInsert(key, key->Hash(),
|
| + ZoneAllocationPolicy(zone))->value));
|
| }
|
|
|
|
|
| void BoundsCheckTable::Insert(BoundsCheckKey* key,
|
| BoundsCheckBbData* data,
|
| Zone* zone) {
|
| - Lookup(key, key->Hash(), true, ZoneAllocationPolicy(zone))->value = data;
|
| + ZoneHashMap::LookupOrInsert(key, key->Hash(), ZoneAllocationPolicy(zone))
|
| + ->value = data;
|
| }
|
|
|
|
|
|
|