Index: src/arm/lithium-codegen-arm.cc |
=================================================================== |
--- src/arm/lithium-codegen-arm.cc (revision 6082) |
+++ src/arm/lithium-codegen-arm.cc (working copy) |
@@ -1547,7 +1547,7 @@ |
void LCodeGen::DoMathAbs(LUnaryMathOperation* instr) { |
- Abort("LUnaryMathOperation unimplemented."); |
+ Abort("DoMathAbs unimplemented."); |
} |
@@ -1562,9 +1562,6 @@ |
void LCodeGen::DoUnaryMathOperation(LUnaryMathOperation* instr) { |
- ASSERT(instr->op() == kMathFloor || |
- instr->op() == kMathAbs); |
- |
switch (instr->op()) { |
case kMathAbs: |
DoMathAbs(instr); |
@@ -1576,6 +1573,7 @@ |
DoMathSqrt(instr); |
break; |
default: |
+ Abort("Unimplemented type of LUnaryMathOperation."); |
UNREACHABLE(); |
} |
} |