Index: src/compiler/representation-change.h |
diff --git a/src/compiler/representation-change.h b/src/compiler/representation-change.h |
index 026bb9e6deb36cffa642245b28594bfe7bd5934c..04d94642c01bb00a0b312611efa8bba572787300 100644 |
--- a/src/compiler/representation-change.h |
+++ b/src/compiler/representation-change.h |
@@ -221,7 +221,7 @@ class RepresentationChanger { |
} |
case IrOpcode::kHeapConstant: { |
Handle<Object> handle = ValueOf<Handle<Object> >(node->op()); |
- ASSERT(*handle == isolate()->heap()->true_value() || |
+ DCHECK(*handle == isolate()->heap()->true_value() || |
*handle == isolate()->heap()->false_value()); |
return jsgraph()->Int32Constant( |
*handle == isolate()->heap()->true_value() ? 1 : 0); |