Revision: 5950
Author: [email protected]
Date: Wed Dec  8 07:03:08 2010
Log: Fix compilation on ARM when adding Math.pow optimization in 5949.
Review URL: http://codereview.chromium.org/5546006
http://code.google.com/p/v8/source/detail?r=5950

Modified:
 /branches/bleeding_edge/src/arm/lithium-arm.cc

=======================================
--- /branches/bleeding_edge/src/arm/lithium-arm.cc      Tue Dec  7 06:51:49 2010
+++ /branches/bleeding_edge/src/arm/lithium-arm.cc      Wed Dec  8 07:03:08 2010
@@ -1351,6 +1351,9 @@
       return AssignEnvironment(DefineAsRegister(result));
     case kMathSqrt:
       return DefineSameAsFirst(result);
+    case kMathPowHalf:
+      Abort("MathPowHalf LUnaryMathOperation not implemented");
+      return NULL;
     default:
       UNREACHABLE();
       return NULL;
@@ -1546,6 +1549,12 @@
     return DoArithmeticT(Token::ADD, instr);
   }
 }
+
+
+LInstruction* LChunkBuilder::DoPower(HPower* instr) {
+  Abort("LPower instruction not implemented on ARM");
+  return NULL;
+}


 LInstruction* LChunkBuilder::DoCompare(HCompare* instr) {

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to