Title: [234787] trunk/Source/_javascript_Core
- Revision
- 234787
- Author
- [email protected]
- Date
- 2018-08-12 09:36:51 -0700 (Sun, 12 Aug 2018)
Log Message
Disable JIT on IA-32 without SSE2
https://bugs.webkit.org/show_bug.cgi?id=188476
Patch by Karo Gyoker <[email protected]> on 2018-08-12
Reviewed by Michael Catanzaro.
Including missing header (MacroAssembler.h) in case of other
operating systems than Windows too.
* runtime/Options.cpp:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (234786 => 234787)
--- trunk/Source/_javascript_Core/ChangeLog 2018-08-12 15:46:44 UTC (rev 234786)
+++ trunk/Source/_javascript_Core/ChangeLog 2018-08-12 16:36:51 UTC (rev 234787)
@@ -1,3 +1,15 @@
+2018-08-12 Karo Gyoker <[email protected]>
+
+ Disable JIT on IA-32 without SSE2
+ https://bugs.webkit.org/show_bug.cgi?id=188476
+
+ Reviewed by Michael Catanzaro.
+
+ Including missing header (MacroAssembler.h) in case of other
+ operating systems than Windows too.
+
+ * runtime/Options.cpp:
+
2018-08-11 Karo Gyoker <[email protected]>
Disable JIT on IA-32 without SSE2
Modified: trunk/Source/_javascript_Core/runtime/Options.cpp (234786 => 234787)
--- trunk/Source/_javascript_Core/runtime/Options.cpp 2018-08-12 15:46:44 UTC (rev 234786)
+++ trunk/Source/_javascript_Core/runtime/Options.cpp 2018-08-12 16:36:51 UTC (rev 234787)
@@ -49,7 +49,7 @@
#include <crt_externs.h>
#endif
-#if OS(WINDOWS) && ENABLE(JIT)
+#if ENABLE(JIT)
#include "MacroAssembler.h"
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes