Title: [90688] trunk/Source/_javascript_Core
Revision
90688
Author
[email protected]
Date
2011-07-09 13:43:09 -0700 (Sat, 09 Jul 2011)

Log Message

Fix unaligned userspace access for SH4 platforms.
https://bugs.webkit.org/show_bug.cgi?id=62993

Patch by Thouraya Andolsi <[email protected]> on 2011-07-09

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (90687 => 90688)


--- trunk/Source/_javascript_Core/ChangeLog	2011-07-09 20:06:53 UTC (rev 90687)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-07-09 20:43:09 UTC (rev 90688)
@@ -1,3 +1,10 @@
+2011-07-09  Thouraya Andolsi  <[email protected]>
+
+        Fix unaligned userspace access for SH4 platforms. 
+        https://bugs.webkit.org/show_bug.cgi?id=62993
+
+        * wtf/Platform.h:
+
 2011-07-09  Chao-ying Fu  <[email protected]>
 
         Fix MIPS build due to readInt32 and readPointer

Modified: trunk/Source/_javascript_Core/wtf/Platform.h (90687 => 90688)


--- trunk/Source/_javascript_Core/wtf/Platform.h	2011-07-09 20:06:53 UTC (rev 90687)
+++ trunk/Source/_javascript_Core/wtf/Platform.h	2011-07-09 20:43:09 UTC (rev 90688)
@@ -365,7 +365,7 @@
 
 #endif /* ARM */
 
-#if CPU(ARM) || CPU(MIPS)
+#if CPU(ARM) || CPU(MIPS) || CPU(SH4)
 #define WTF_CPU_NEEDS_ALIGNED_ACCESS 1
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to