Reviewers: dcarney,

Message:
PTAL

Description:
Turn assert into RUNTIME_ASSERT

BUG=

Please review this at https://codereview.chromium.org/350683003/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+1, -1 lines):
  M src/runtime.cc


Index: src/runtime.cc
diff --git a/src/runtime.cc b/src/runtime.cc
index 771d139cccfc78e220dde68100bf9223015c3361..42adde31c264b57093a8e2d074cbb253f6e128e0 100644
--- a/src/runtime.cc
+++ b/src/runtime.cc
@@ -2086,7 +2086,7 @@ RUNTIME_FUNCTION(Runtime_EnableAccessChecks) {
   ASSERT(args.length() == 1);
   CONVERT_ARG_HANDLE_CHECKED(HeapObject, object, 0);
   Handle<Map> old_map(object->map());
-  ASSERT(!old_map->is_access_check_needed());
+  RUNTIME_ASSERT(!old_map->is_access_check_needed());
   // Copy map so it won't interfere constructor's initial map.
   Handle<Map> new_map = Map::Copy(old_map);
   new_map->set_is_access_check_needed(true);


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to