Title: [121943] trunk/Source/_javascript_Core
Revision
121943
Author
o...@webkit.org
Date
2012-07-05 21:52:26 -0700 (Thu, 05 Jul 2012)

Log Message

[Qt] Unreviewed 64 bit buildfix after r121925.

* bytecode/PutByIdStatus.cpp:
(JSC::PutByIdStatus::computeFromLLInt):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (121942 => 121943)


--- trunk/Source/_javascript_Core/ChangeLog	2012-07-06 04:31:26 UTC (rev 121942)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-07-06 04:52:26 UTC (rev 121943)
@@ -1,3 +1,10 @@
+2012-07-05  Csaba Osztrogonác  <o...@webkit.org>
+
+        [Qt] Unreviewed 64 bit buildfix after r121925.
+
+        * bytecode/PutByIdStatus.cpp:
+        (JSC::PutByIdStatus::computeFromLLInt):
+
 2012-07-05  Michael Saboff  <msab...@apple.com>
 
         JSString::tryHashConstLock() fails to get exclusive lock

Modified: trunk/Source/_javascript_Core/bytecode/PutByIdStatus.cpp (121942 => 121943)


--- trunk/Source/_javascript_Core/bytecode/PutByIdStatus.cpp	2012-07-06 04:31:26 UTC (rev 121942)
+++ trunk/Source/_javascript_Core/bytecode/PutByIdStatus.cpp	2012-07-06 04:52:26 UTC (rev 121943)
@@ -72,7 +72,7 @@
     
     return PutByIdStatus(SimpleTransition, structure, newStructure, chain, offset);
 #else
-    return PutByIdStatus(NoInformation, 0, 0, 0, notFound);
+    return PutByIdStatus(NoInformation, 0, 0, 0, invalidOffset);
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to