| Index: src/ppc/lithium-codegen-ppc.h
 | 
| diff --git a/src/ppc/lithium-codegen-ppc.h b/src/ppc/lithium-codegen-ppc.h
 | 
| index 5ebb72e55c10554eab0f6d6087cf402b72ebfd7a..b266e8e58a97335c0bf669d5838d30b802e275d9 100644
 | 
| --- a/src/ppc/lithium-codegen-ppc.h
 | 
| +++ b/src/ppc/lithium-codegen-ppc.h
 | 
| @@ -27,7 +27,6 @@ class LCodeGen : public LCodeGenBase {
 | 
|        : LCodeGenBase(chunk, assembler, info),
 | 
|          deoptimizations_(4, info->zone()),
 | 
|          jump_table_(4, info->zone()),
 | 
| -        deoptimization_literals_(8, info->zone()),
 | 
|          inlined_function_count_(0),
 | 
|          scope_(info->scope()),
 | 
|          translations_(info->zone()),
 | 
| @@ -213,7 +212,6 @@ class LCodeGen : public LCodeGenBase {
 | 
|                          int* object_index_pointer,
 | 
|                          int* dematerialized_index_pointer);
 | 
|    void PopulateDeoptimizationData(Handle<Code> code);
 | 
| -  int DefineDeoptimizationLiteral(Handle<Object> literal);
 | 
|  
 | 
|    void PopulateDeoptimizationLiteralsWithInlinedFunctions();
 | 
|  
 | 
| @@ -290,7 +288,6 @@ class LCodeGen : public LCodeGenBase {
 | 
|  
 | 
|    ZoneList<LEnvironment*> deoptimizations_;
 | 
|    ZoneList<Deoptimizer::JumpTableEntry> jump_table_;
 | 
| -  ZoneList<Handle<Object> > deoptimization_literals_;
 | 
|    int inlined_function_count_;
 | 
|    Scope* const scope_;
 | 
|    TranslationBuffer translations_;
 | 
| 
 |