| Index: src/hydrogen.h
|
| diff --git a/src/hydrogen.h b/src/hydrogen.h
|
| index af7671b38bad3b40b1d649d61186e4a57bfdcfd3..c1ed797c96f0a37cca3c929d42852bcc1a91bbf7 100644
|
| --- a/src/hydrogen.h
|
| +++ b/src/hydrogen.h
|
| @@ -1864,10 +1864,10 @@ class HGraphBuilder {
|
|
|
| HValue* BuildElementIndexHash(HValue* index);
|
|
|
| - void BuildCompareNil(
|
| - HValue* value,
|
| - Type* type,
|
| - HIfContinuation* continuation);
|
| + enum MapEmbedding { kEmbedMapsDirectly, kEmbedMapsViaWeakCells };
|
| +
|
| + void BuildCompareNil(HValue* value, Type* type, HIfContinuation* continuation,
|
| + MapEmbedding map_embedding = kEmbedMapsDirectly);
|
|
|
| void BuildCreateAllocationMemento(HValue* previous_object,
|
| HValue* previous_object_size,
|
|
|