Index: src/frames.cc |
diff --git a/src/frames.cc b/src/frames.cc |
index 4402496f1824585c7a87cf66a9642d4a02674068..40df12c437281bb6006c66af0e8a55871c14623d 100644 |
--- a/src/frames.cc |
+++ b/src/frames.cc |
@@ -1174,7 +1174,7 @@ void EntryFrame::Iterate(ObjectVisitor* v) const { |
StackHandlerIterator it(this, top_handler()); |
ASSERT(!it.done()); |
StackHandler* handler = it.handler(); |
- ASSERT(handler->is_entry()); |
+ ASSERT(handler->is_js_entry()); |
handler->Iterate(v, LookupCode()); |
#ifdef DEBUG |
// Make sure that the entry frame does not contain more than one |