Title: [260314] trunk/Source/_javascript_Core
Revision
260314
Author
ysuz...@apple.com
Date
2020-04-18 09:25:12 -0700 (Sat, 18 Apr 2020)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (260313 => 260314)


--- trunk/Source/_javascript_Core/ChangeLog	2020-04-18 16:01:49 UTC (rev 260313)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-04-18 16:25:12 UTC (rev 260314)
@@ -1,3 +1,13 @@
+2020-04-18  Yusuke Suzuki  <ysuz...@apple.com>
+
+        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:
+
 2020-04-18  Alexey Shvayka  <shvaikal...@gmail.com>
 
         RegExp.prototype[@@search] should use SameValue

Modified: trunk/Source/_javascript_Core/offlineasm/arm64e.rb (260313 => 260314)


--- trunk/Source/_javascript_Core/offlineasm/arm64e.rb	2020-04-18 16:01:49 UTC (rev 260313)
+++ trunk/Source/_javascript_Core/offlineasm/arm64e.rb	2020-04-18 16:25:12 UTC (rev 260314)
@@ -53,7 +53,7 @@
                         riscLowerOperandToRegister(node, newList, postInstructions, 0, "p", false),
                         tag
                     ]
-                    newList << Instruction.cloneWithNewOperands(operands)
+                    newList << node.cloneWithNewOperands(operands)
                     wasHandled = true
                 end
             when "untagArrayPtr"
@@ -67,7 +67,7 @@
                         operand
                     end
                 }
-                newList << Instruction.cloneWithNewOperands(newOperands)
+                newList << node.cloneWithNewOperands(newOperands)
                 wasHandled = true
             end
             newList += postInstructions if wasHandled
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to