| Index: src/crankshaft/ppc/lithium-ppc.cc
|
| diff --git a/src/crankshaft/ppc/lithium-ppc.cc b/src/crankshaft/ppc/lithium-ppc.cc
|
| index 2d37fead502a9777cea87bb814c5d85aca95dfe2..d5f70831edcc4d2d6612ea6793f71c1f9bee1797 100644
|
| --- a/src/crankshaft/ppc/lithium-ppc.cc
|
| +++ b/src/crankshaft/ppc/lithium-ppc.cc
|
| @@ -311,13 +311,6 @@ void LInvokeFunction::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void LCallNew::PrintDataTo(StringStream* stream) {
|
| - stream->Add("= ");
|
| - constructor()->PrintTo(stream);
|
| - stream->Add(" #%d / ", arity());
|
| -}
|
| -
|
| -
|
| void LCallNewArray::PrintDataTo(StringStream* stream) {
|
| stream->Add("= ");
|
| constructor()->PrintTo(stream);
|
| @@ -1222,14 +1215,6 @@ LInstruction* LChunkBuilder::DoMathPowHalf(HUnaryMathOperation* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoCallNew(HCallNew* instr) {
|
| - LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* constructor = UseFixed(instr->constructor(), r4);
|
| - LCallNew* result = new (zone()) LCallNew(context, constructor);
|
| - return MarkAsCall(DefineFixed(result, r3), instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| LOperand* constructor = UseFixed(instr->constructor(), r4);
|
|
|