Reviewers: Søren Gjesse,

Message:
[email protected]

Hi Soren

I must have failed to check tests in debug mode.
Sorry about this.

Peter

Description:
Fix broken build: disable stale assert

Please review this at http://codereview.chromium.org/1094008

Affected files:
  M src/frames.cc


Index: src/frames.cc
diff --git a/src/frames.cc b/src/frames.cc
index 415459e68d402c0d42a7bd18625ed49dbb0dced5..24550a2ed07f0afeadd3d062a245d0ea2a36987e 100644
--- a/src/frames.cc
+++ b/src/frames.cc
@@ -306,14 +306,12 @@ void SafeStackTraceFrameIterator::Advance() {


 void StackHandler::Cook(Code* code) {
-  ASSERT(MarkCompactCollector::IsCompacting());
   ASSERT(code->contains(pc()));
   set_pc(AddressFrom<Address>(pc() - code->instruction_start()));
 }


 void StackHandler::Uncook(Code* code) {
-  ASSERT(MarkCompactCollector::HasCompacted());
   set_pc(code->instruction_start() + OffsetFrom(pc()));
   ASSERT(code->contains(pc()));
 }


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

To unsubscribe from this group, send email to v8-dev+unsubscribegooglegroups.com or reply 
to this email with the words "REMOVE ME" as the subject.

Reply via email to