Index: src/macro-assembler.h |
diff --git a/src/macro-assembler.h b/src/macro-assembler.h |
index cba8df145e56228fc83bcf7dd94275a769d3f623..2b7d9428a8f0eb72ea3bb7d086ece8285c1409dc 100644 |
--- a/src/macro-assembler.h |
+++ b/src/macro-assembler.h |
@@ -114,7 +114,7 @@ class FrameScope { |
// scope, the MacroAssembler is still marked as being in a frame scope, and |
// the code will be generated again when it goes out of scope. |
void GenerateLeaveFrame() { |
- ASSERT(type_ != StackFrame::MANUAL && type_ != StackFrame::NONE); |
+ DCHECK(type_ != StackFrame::MANUAL && type_ != StackFrame::NONE); |
masm_->LeaveFrame(type_); |
} |