Index: src/compiler/ppc/code-generator-ppc.cc |
diff --git a/src/compiler/ppc/code-generator-ppc.cc b/src/compiler/ppc/code-generator-ppc.cc |
index 624afad8e9ba3f7fe0c134ce93e196b793101585..ba7aae69bd55007de56bf8d78955fff861ee4f00 100644 |
--- a/src/compiler/ppc/code-generator-ppc.cc |
+++ b/src/compiler/ppc/code-generator-ppc.cc |
@@ -969,6 +969,15 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
break; |
#endif |
#if !V8_TARGET_ARCH_PPC64 |
+ case kPPC_AddPair: |
+ // i.InputRegister(0) ... left low word. |
+ // i.InputRegister(1) ... left high word. |
+ // i.InputRegister(2) ... right low word. |
+ // i.InputRegister(3) ... right high word. |
+ __ addc(i.OutputRegister(0), i.InputRegister(0), i.InputRegister(2)); |
+ __ adde(i.OutputRegister(1), i.InputRegister(1), i.InputRegister(3)); |
+ DCHECK_EQ(LeaveRC, i.OutputRCBit()); |
+ break; |
case kPPC_ShiftLeftPair: |
if (instr->InputAt(2)->IsImmediate()) { |
__ ShiftLeftPair(i.OutputRegister(0), i.OutputRegister(1), |