| Index: src/compiler/machine-node-factory.h
|
| diff --git a/src/compiler/machine-node-factory.h b/src/compiler/machine-node-factory.h
|
| index 35bcb7c1cd0b192c32b5ca95487def958c6eb8db..5eb1e246d02014f13e6537ac85cb930d36149b59 100644
|
| --- a/src/compiler/machine-node-factory.h
|
| +++ b/src/compiler/machine-node-factory.h
|
| @@ -55,8 +55,7 @@ class MachineNodeFactory {
|
| return NEW_NODE_0(COMMON()->Float64Constant(value));
|
| }
|
| Node* HeapConstant(Handle<Object> object) {
|
| - PrintableUnique<Object> val =
|
| - PrintableUnique<Object>::CreateUninitialized(ZONE(), object);
|
| + Unique<Object> val = Unique<Object>::CreateUninitialized(object);
|
| return NEW_NODE_0(COMMON()->HeapConstant(val));
|
| }
|
|
|
|
|