Title: [140278] trunk/Source/_javascript_Core
Revision
140278
Author
[email protected]
Date
2013-01-20 12:33:18 -0800 (Sun, 20 Jan 2013)

Log Message

2013-01-20  Geoffrey Garen  <[email protected]>

        Unreviewed.

        Temporarily disabling this ASSERT to get the bots green
        while I investigate a fix.

        * runtime/PrototypeMap.cpp:
        (JSC::PrototypeMap::emptyObjectStructureForPrototype):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (140277 => 140278)


--- trunk/Source/_javascript_Core/ChangeLog	2013-01-20 20:16:24 UTC (rev 140277)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-01-20 20:33:18 UTC (rev 140278)
@@ -1,3 +1,13 @@
+2013-01-20  Geoffrey Garen  <[email protected]>
+
+        Unreviewed.
+
+        Temporarily disabling this ASSERT to get the bots green
+        while I investigate a fix.
+
+        * runtime/PrototypeMap.cpp:
+        (JSC::PrototypeMap::emptyObjectStructureForPrototype):
+
 2013-01-20  Filip Pizlo  <[email protected]>
 
         Inserting a node into the DFG graph should not require five lines of code

Modified: trunk/Source/_javascript_Core/runtime/PrototypeMap.cpp (140277 => 140278)


--- trunk/Source/_javascript_Core/runtime/PrototypeMap.cpp	2013-01-20 20:16:24 UTC (rev 140277)
+++ trunk/Source/_javascript_Core/runtime/PrototypeMap.cpp	2013-01-20 20:33:18 UTC (rev 140278)
@@ -55,10 +55,8 @@
 Structure* PrototypeMap::emptyObjectStructureForPrototype(JSObject* object)
 {
     WeakGCMap<JSObject*, Structure>::AddResult addResult = m_structures.add(object, nullptr);
-    if (!addResult.isNewEntry) {
-        ASSERT(isPrototype(object));
+    if (!addResult.isNewEntry)
         return addResult.iterator->value.get();
-    }
 
     addPrototype(object);
     Structure* structure = JSFinalObject::createStructure(object->globalObject()->globalData(), object->globalObject(), object);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to