Title: [131889] trunk/Source/WTF
- Revision
- 131889
- Author
- [email protected]
- Date
- 2012-10-19 05:22:43 -0700 (Fri, 19 Oct 2012)
Log Message
REGRESSION(r131822): It made 500+ tests crash on 32 bit platforms
https://bugs.webkit.org/show_bug.cgi?id=99814
Patch by Csaba Osztrogonác <[email protected]> on 2012-10-19
Reviewed by Simon Hausmann.
* wtf/Platform.h: Disable LLINT on (PLATFORM(QT) && CPU(X86)) temporarily until proper fix.
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (131888 => 131889)
--- trunk/Source/WTF/ChangeLog 2012-10-19 12:21:51 UTC (rev 131888)
+++ trunk/Source/WTF/ChangeLog 2012-10-19 12:22:43 UTC (rev 131889)
@@ -1,3 +1,12 @@
+2012-10-19 Csaba Osztrogonác <[email protected]>
+
+ REGRESSION(r131822): It made 500+ tests crash on 32 bit platforms
+ https://bugs.webkit.org/show_bug.cgi?id=99814
+
+ Reviewed by Simon Hausmann.
+
+ * wtf/Platform.h: Disable LLINT on (PLATFORM(QT) && CPU(X86)) temporarily until proper fix.
+
2012-10-17 Ilya Tikhonovsky <[email protected]>
Web Inspector: NMI provide data for mixing with tcmalloc heap dumps.
Modified: trunk/Source/WTF/wtf/Platform.h (131888 => 131889)
--- trunk/Source/WTF/wtf/Platform.h 2012-10-19 12:21:51 UTC (rev 131888)
+++ trunk/Source/WTF/wtf/Platform.h 2012-10-19 12:22:43 UTC (rev 131889)
@@ -907,6 +907,12 @@
#define ENABLE_LLINT 0
#endif
+// REGRESSION(r131822): It made 500+ tests crash on 32 bit platforms
+// https://bugs.webkit.org/show_bug.cgi?id=99814
+#if (PLATFORM(QT) && CPU(X86))
+#define ENABLE_LLINT 0
+#endif
+
/* On some of the platforms where we have a JIT, we want to also have the
low-level interpreter. */
#if !defined(ENABLE_LLINT) \
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes