Title: [125806] trunk/Source/_javascript_Core
Revision
125806
Author
[email protected]
Date
2012-08-16 13:35:12 -0700 (Thu, 16 Aug 2012)

Log Message

All op_resolve_global instructions should end up in the list of global resolve instructions
https://bugs.webkit.org/show_bug.cgi?id=94247
<rdar://problem/12103500>

Reviewed by Mark Hahnenberg.

* bytecompiler/BytecodeGenerator.cpp:
(JSC::BytecodeGenerator::emitResolveWithBase):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (125805 => 125806)


--- trunk/Source/_javascript_Core/ChangeLog	2012-08-16 20:30:13 UTC (rev 125805)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-08-16 20:35:12 UTC (rev 125806)
@@ -1,3 +1,14 @@
+2012-08-16  Filip Pizlo  <[email protected]>
+
+        All op_resolve_global instructions should end up in the list of global resolve instructions
+        https://bugs.webkit.org/show_bug.cgi?id=94247
+        <rdar://problem/12103500>
+
+        Reviewed by Mark Hahnenberg.
+
+        * bytecompiler/BytecodeGenerator.cpp:
+        (JSC::BytecodeGenerator::emitResolveWithBase):
+
 2012-08-15  Bruno de Oliveira Abinader  <[email protected]>
 
         [css3-text] Add CSS3 Text decoration compile flag

Modified: trunk/Source/_javascript_Core/bytecompiler/BytecodeGenerator.cpp (125805 => 125806)


--- trunk/Source/_javascript_Core/bytecompiler/BytecodeGenerator.cpp	2012-08-16 20:30:13 UTC (rev 125805)
+++ trunk/Source/_javascript_Core/bytecompiler/BytecodeGenerator.cpp	2012-08-16 20:35:12 UTC (rev 125806)
@@ -1464,9 +1464,7 @@
 #if ENABLE(JIT)
         m_codeBlock->addGlobalResolveInfo(instructions().size());
 #endif
-#if ENABLE(CLASSIC_INTERPRETER)
         m_codeBlock->addGlobalResolveInstruction(instructions().size());
-#endif
         ValueProfile* profile = ""
         instructions().append(propDst->index());
         instructions().append(addConstant(property));
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to