Changeset 220592 in webkit


Ignore:
Timestamp:
Aug 11, 2017 8:44:38 AM (7 years ago)
Author:
Yusuke Suzuki
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:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r220579 r220592  
     12017-08-11  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, build fix for x86 GTK port
     4        https://bugs.webkit.org/show_bug.cgi?id=175446
     5
     6        Use pushfl/popfl instead of pushfd/popfd.
     7
     8        * assembler/MacroAssemblerX86Common.cpp:
     9
    1102017-08-10  Mark Lam  <mark.lam@apple.com>
    211
  • trunk/Source/JavaScriptCore/assembler/MacroAssemblerX86Common.cpp

    r220579 r220592  
    163163    SYMBOL_STRING(ctiMasmProbeTrampoline) ":" "\n"
    164164
    165     "pushfd" "\n"
     165    "pushfl" "\n"
    166166
    167167    // MacroAssemblerX86Common::probe() has already generated code to store some values.
     
    316316
    317317    // Do the remaining restoration by popping off the restore area.
    318     "popfd" "\n"
     318    "popfl" "\n"
    319319    "popl %eax" "\n"
    320320    "popl %ecx" "\n"
Note: See TracChangeset for help on using the changeset viewer.