Title: [220592] trunk/Source/_javascript_Core
Revision
220592
Author
utatane....@gmail.com
Date
2017-08-11 08:44:38 -0700 (Fri, 11 Aug 2017)

Log Message

Unreviewed, build fix for x86 GTK port
https://bugs.webkit.org/show_bug.cgi?id=175446

Use pushfl/popfl instead of pushfd/popfd.

* assembler/MacroAssemblerX86Common.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (220591 => 220592)


--- trunk/Source/_javascript_Core/ChangeLog	2017-08-11 15:44:00 UTC (rev 220591)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-08-11 15:44:38 UTC (rev 220592)
@@ -1,3 +1,12 @@
+2017-08-11  Yusuke Suzuki  <utatane....@gmail.com>
+
+        Unreviewed, build fix for x86 GTK port
+        https://bugs.webkit.org/show_bug.cgi?id=175446
+
+        Use pushfl/popfl instead of pushfd/popfd.
+
+        * assembler/MacroAssemblerX86Common.cpp:
+
 2017-08-10  Mark Lam  <mark....@apple.com>
 
         Make the MASM_PROBE mechanism mandatory for DFG and FTL builds.

Modified: trunk/Source/_javascript_Core/assembler/MacroAssemblerX86Common.cpp (220591 => 220592)


--- trunk/Source/_javascript_Core/assembler/MacroAssemblerX86Common.cpp	2017-08-11 15:44:00 UTC (rev 220591)
+++ trunk/Source/_javascript_Core/assembler/MacroAssemblerX86Common.cpp	2017-08-11 15:44:38 UTC (rev 220592)
@@ -162,7 +162,7 @@
     HIDE_SYMBOL(ctiMasmProbeTrampoline) "\n"
     SYMBOL_STRING(ctiMasmProbeTrampoline) ":" "\n"
 
-    "pushfd" "\n"
+    "pushfl" "\n"
 
     // MacroAssemblerX86Common::probe() has already generated code to store some values.
     // Together with the eflags pushed above, the top of stack now looks like
@@ -315,7 +315,7 @@
     "movl %ecx, %esp" "\n"
 
     // Do the remaining restoration by popping off the restore area.
-    "popfd" "\n"
+    "popfl" "\n"
     "popl %eax" "\n"
     "popl %ecx" "\n"
     "popl %ebp" "\n"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to