Title: [96965] trunk/Source/_javascript_Core
Revision
96965
Author
[email protected]
Date
2011-10-07 11:57:41 -0700 (Fri, 07 Oct 2011)

Log Message

Fix 32-bit build.

Modified Paths


Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (96964 => 96965)


--- trunk/Source/_javascript_Core/ChangeLog	2011-10-07 18:55:13 UTC (rev 96964)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-10-07 18:57:41 UTC (rev 96965)
@@ -1,5 +1,12 @@
 2011-10-07  Oliver Hunt  <[email protected]>
 
+        Fix 32-bit build.
+
+        * jit/JITCall32_64.cpp:
+        (JSC::JIT::compileOpCall):
+
+2011-10-07  Oliver Hunt  <[email protected]>
+
         Support direct calls to intrinsic functions
         https://bugs.webkit.org/show_bug.cgi?id=69646
 

Modified: trunk/Source/_javascript_Core/jit/JITCall32_64.cpp (96964 => 96965)


--- trunk/Source/_javascript_Core/jit/JITCall32_64.cpp	2011-10-07 18:55:13 UTC (rev 96964)
+++ trunk/Source/_javascript_Core/jit/JITCall32_64.cpp	2011-10-07 18:57:41 UTC (rev 96965)
@@ -223,7 +223,7 @@
     m_callStructureStubCompilationInfo.append(StructureStubCompilationInfo());
     m_callStructureStubCompilationInfo[callLinkInfoIndex].hotPathBegin = addressOfLinkedFunctionCheck;
     m_callStructureStubCompilationInfo[callLinkInfoIndex].isCall = opcodeID != op_construct;
-    m_callStructureStubCompilationInfo[callLinkInfoIndex].bytecodeIndex = m_bytecodeIndex;
+    m_callStructureStubCompilationInfo[callLinkInfoIndex].bytecodeIndex = m_bytecodeOffset;
 
     addSlowCase(branch32(NotEqual, regT1, TrustedImm32(JSValue::CellTag)));
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to