| Index: src/x64/lithium-codegen-x64.cc | 
| diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc | 
| index 131cbb8f5086b5fad31e282bc4bbfea6ceb737d4..b747856e03716ddfecb60a7495583962c9b9863a 100644 | 
| --- a/src/x64/lithium-codegen-x64.cc | 
| +++ b/src/x64/lithium-codegen-x64.cc | 
| @@ -3340,21 +3340,6 @@ void LCodeGen::DoDeclareGlobals(LDeclareGlobals* instr) { | 
| } | 
|  | 
|  | 
| -void LCodeGen::DoGlobalObject(LGlobalObject* instr) { | 
| -  Register context = ToRegister(instr->context()); | 
| -  Register result = ToRegister(instr->result()); | 
| -  __ movp(result, | 
| -          Operand(context, Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX))); | 
| -} | 
| - | 
| - | 
| -void LCodeGen::DoGlobalReceiver(LGlobalReceiver* instr) { | 
| -  Register global = ToRegister(instr->global()); | 
| -  Register result = ToRegister(instr->result()); | 
| -  __ movp(result, FieldOperand(global, GlobalObject::kGlobalReceiverOffset)); | 
| -} | 
| - | 
| - | 
| void LCodeGen::CallKnownFunction(Handle<JSFunction> function, | 
| int formal_parameter_count, | 
| int arity, | 
|  |