Index: src/hydrogen-instructions.cc |
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc |
index 5ec663c47b29460c823cf8579471fab7e8e37f21..15ce611282059957d565f23d2f85345192a3d752 100644 |
--- a/src/hydrogen-instructions.cc |
+++ b/src/hydrogen-instructions.cc |
@@ -1540,8 +1540,6 @@ HValue* HUnaryMathOperation::Canonicalize() { |
// with its input. |
if (val->representation().IsInteger32()) return val; |
-#if defined(V8_TARGET_ARCH_ARM) || defined(V8_TARGET_ARCH_IA32) || \ |
- defined(V8_TARGET_ARCH_X64) |
if (val->IsDiv() && (val->UseCount() == 1)) { |
HDiv* hdiv = HDiv::cast(val); |
HValue* left = hdiv->left(); |
@@ -1587,7 +1585,6 @@ HValue* HUnaryMathOperation::Canonicalize() { |
// Return NULL to remove this instruction from the graph. |
return NULL; |
} |
-#endif // V8_TARGET_ARCH_ARM |
} |
return this; |
} |