| Index: src/crankshaft/x87/lithium-codegen-x87.h | 
| diff --git a/src/crankshaft/x87/lithium-codegen-x87.h b/src/crankshaft/x87/lithium-codegen-x87.h | 
| index 0cfbf7038891e4918e88b5d94c242030b034aa02..06f2a40469cb29ade03a2253b090ee63a9686072 100644 | 
| --- a/src/crankshaft/x87/lithium-codegen-x87.h | 
| +++ b/src/crankshaft/x87/lithium-codegen-x87.h | 
| @@ -31,8 +31,6 @@ class LCodeGen: public LCodeGenBase { | 
| jump_table_(4, info->zone()), | 
| scope_(info->scope()), | 
| deferred_(8, info->zone()), | 
| -        dynamic_frame_alignment_(false), | 
| -        support_aligned_spilled_doubles_(false), | 
| frame_is_built_(false), | 
| x87_stack_(assembler), | 
| safepoints_(info->zone()), | 
| @@ -329,7 +327,7 @@ class LCodeGen: public LCodeGenBase { | 
| template <class T> | 
| void EmitVectorStoreICRegisters(T* instr); | 
|  | 
| -  void EmitReturn(LReturn* instr, bool dynamic_frame_alignment); | 
| +  void EmitReturn(LReturn* instr); | 
|  | 
| // Emits code for pushing either a tagged constant, a (non-double) | 
| // register, or a stack slot operand. | 
| @@ -354,8 +352,6 @@ class LCodeGen: public LCodeGenBase { | 
| ZoneList<Deoptimizer::JumpTableEntry> jump_table_; | 
| Scope* const scope_; | 
| ZoneList<LDeferredCode*> deferred_; | 
| -  bool dynamic_frame_alignment_; | 
| -  bool support_aligned_spilled_doubles_; | 
| bool frame_is_built_; | 
|  | 
| class X87Stack : public ZoneObject { | 
|  |