Changeset 260314 in webkit


Ignore:
Timestamp:
Apr 18, 2020 9:25:12 AM (4 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewed, build fix for ARM64E after r260310
https://bugs.webkit.org/show_bug.cgi?id=207330

r260310 uses undefined function Instruction.cloneWithNewOperands in arm64e.rb and throws an error.
This patch calls node.cloneWithNewOperands.

  • offlineasm/arm64e.rb:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r260312 r260314  
     12020-04-18  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        Unreviewed, build fix for ARM64E after r260310
     4        https://bugs.webkit.org/show_bug.cgi?id=207330
     5
     6        r260310 uses undefined function Instruction.cloneWithNewOperands in arm64e.rb and throws an error.
     7        This patch calls `node.cloneWithNewOperands`.
     8
     9        * offlineasm/arm64e.rb:
     10
    1112020-04-18  Alexey Shvayka  <shvaikalesh@gmail.com>
    212
  • trunk/Source/JavaScriptCore/offlineasm/arm64e.rb

    r260310 r260314  
    5454                        tag
    5555                    ]
    56                     newList << Instruction.cloneWithNewOperands(operands)
     56                    newList << node.cloneWithNewOperands(operands)
    5757                    wasHandled = true
    5858                end
     
    6868                    end
    6969                }
    70                 newList << Instruction.cloneWithNewOperands(newOperands)
     70                newList << node.cloneWithNewOperands(newOperands)
    7171                wasHandled = true
    7272            end
Note: See TracChangeset for help on using the changeset viewer.