Title: [183966] trunk/Source/_javascript_Core
- Revision
- 183966
- Author
- [email protected]
- Date
- 2015-05-07 17:54:54 -0700 (Thu, 07 May 2015)
Log Message
Fix the x86 32bits build
Patch by Benjamin Poulain <[email protected]> on 2015-05-07
* assembler/X86Assembler.h:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (183965 => 183966)
--- trunk/Source/_javascript_Core/ChangeLog 2015-05-08 00:45:00 UTC (rev 183965)
+++ trunk/Source/_javascript_Core/ChangeLog 2015-05-08 00:54:54 UTC (rev 183966)
@@ -1,5 +1,11 @@
2015-05-07 Benjamin Poulain <[email protected]>
+ Fix the x86 32bits build
+
+ * assembler/X86Assembler.h:
+
+2015-05-07 Benjamin Poulain <[email protected]>
+
[JSC] Add basic DFG/FTL support for Math.round
https://bugs.webkit.org/show_bug.cgi?id=144725
Modified: trunk/Source/_javascript_Core/assembler/X86Assembler.h (183965 => 183966)
--- trunk/Source/_javascript_Core/assembler/X86Assembler.h 2015-05-08 00:45:00 UTC (rev 183965)
+++ trunk/Source/_javascript_Core/assembler/X86Assembler.h 2015-05-08 00:54:54 UTC (rev 183966)
@@ -1805,13 +1805,13 @@
m_formatter.twoByteOp(OP2_MOVD_VdEd, (RegisterID)dst, src);
}
+#if CPU(X86_64)
void movmskpd_rr(XMMRegisterID src, RegisterID dst)
{
m_formatter.prefix(PRE_SSE_66);
m_formatter.twoByteOp64(OP2_MOVMSKPD_VdEd, dst, (RegisterID)src);
}
-#if CPU(X86_64)
void movq_rr(XMMRegisterID src, RegisterID dst)
{
m_formatter.prefix(PRE_SSE_66);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes