| Index: src/x64/virtual-frame-x64.h
|
| diff --git a/src/x64/virtual-frame-x64.h b/src/x64/virtual-frame-x64.h
|
| index d0aa26ff1ab572e4a16242fae9fe88f9ced29f83..b7d5a316ddb2334ca65d890b7e6116121439cefb 100644
|
| --- a/src/x64/virtual-frame-x64.h
|
| +++ b/src/x64/virtual-frame-x64.h
|
| @@ -378,7 +378,7 @@ class VirtualFrame : public ZoneObject {
|
| void EmitPush(Immediate immediate);
|
|
|
| // Push an element on the virtual frame.
|
| - void Push(Register reg, StaticType static_type = StaticType());
|
| + void Push(Register reg);
|
| void Push(Handle<Object> value);
|
| void Push(Smi* value) { Push(Handle<Object>(value)); }
|
|
|
| @@ -386,7 +386,7 @@ class VirtualFrame : public ZoneObject {
|
| // frame).
|
| void Push(Result* result) {
|
| if (result->is_register()) {
|
| - Push(result->reg(), result->static_type());
|
| + Push(result->reg());
|
| } else {
|
| ASSERT(result->is_constant());
|
| Push(result->handle());
|
|
|