Title: [97552] trunk/Source/_javascript_Core
Revision
97552
Author
[email protected]
Date
2011-10-15 00:59:26 -0700 (Sat, 15 Oct 2011)

Log Message

Trivial fix for a missing change in r97512
https://bugs.webkit.org/show_bug.cgi?id=70166

Patch by Yuqiang Xian <[email protected]> on 2011-10-15
Reviewed by Gavin Barraclough.

* dfg/DFGJITCompiler32_64.cpp:
(JSC::DFG::JITCompiler::link):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (97551 => 97552)


--- trunk/Source/_javascript_Core/ChangeLog	2011-10-15 07:59:24 UTC (rev 97551)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-10-15 07:59:26 UTC (rev 97552)
@@ -1,3 +1,13 @@
+2011-10-15  Yuqiang Xian  <[email protected]>
+
+        Trivial fix for a missing change in r97512
+        https://bugs.webkit.org/show_bug.cgi?id=70166
+
+        Reviewed by Gavin Barraclough.
+
+        * dfg/DFGJITCompiler32_64.cpp:
+        (JSC::DFG::JITCompiler::link):
+
 2011-10-14  Mark Hahnenberg  <[email protected]>
 
         Rename getOwnPropertySlot to getOwnPropertySlotVirtual

Modified: trunk/Source/_javascript_Core/dfg/DFGJITCompiler32_64.cpp (97551 => 97552)


--- trunk/Source/_javascript_Core/dfg/DFGJITCompiler32_64.cpp	2011-10-15 07:59:24 UTC (rev 97551)
+++ trunk/Source/_javascript_Core/dfg/DFGJITCompiler32_64.cpp	2011-10-15 07:59:26 UTC (rev 97552)
@@ -562,7 +562,7 @@
         for (unsigned i = 0; i < m_calls.size(); ++i) {
             if (m_calls[i].m_handlesExceptions) {
                 unsigned returnAddressOffset = linkBuffer.returnAddressOffset(m_calls[i].m_call);
-                unsigned exceptionInfo = m_calls[i].m_codeOrigin.bytecodeIndex();
+                unsigned exceptionInfo = m_calls[i].m_codeOrigin.bytecodeIndex;
                 m_codeBlock->callReturnIndexVector().append(CallReturnOffsetToBytecodeOffset(returnAddressOffset, exceptionInfo));
             }
         }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to