Revision: 4200
Author: [email protected]
Date: Sat Mar 20 17:23:03 2010
Log: Fix broken build: disable stale assert

Review URL: http://codereview.chromium.org/1094008
http://code.google.com/p/v8/source/detail?r=4200

Modified:
 /branches/bleeding_edge/src/frames.cc

=======================================
--- /branches/bleeding_edge/src/frames.cc       Sat Mar 20 15:37:15 2010
+++ /branches/bleeding_edge/src/frames.cc       Sat Mar 20 17:23:03 2010
@@ -306,14 +306,12 @@


 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