Title: [283135] trunk/Source/_javascript_Core
Revision
283135
Author
[email protected]
Date
2021-09-27 14:27:00 -0700 (Mon, 27 Sep 2021)

Log Message

[JSC][32bit] Fix build after r283098
https://bugs.webkit.org/show_bug.cgi?id=230856

Unreviewed build fix.

Patch by Xan López <[email protected]> on 2021-09-27

* jit/JITOpcodes32_64.cpp:
(JSC::JIT::emit_op_jeq_ptr): remove unused (broken) line.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (283134 => 283135)


--- trunk/Source/_javascript_Core/ChangeLog	2021-09-27 21:21:37 UTC (rev 283134)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-09-27 21:27:00 UTC (rev 283135)
@@ -1,3 +1,13 @@
+2021-09-27  Xan López  <[email protected]>
+
+        [JSC][32bit] Fix build after r283098
+        https://bugs.webkit.org/show_bug.cgi?id=230856
+
+        Unreviewed build fix.
+
+        * jit/JITOpcodes32_64.cpp:
+        (JSC::JIT::emit_op_jeq_ptr): remove unused (broken) line.
+
 2021-09-27  Commit Queue  <[email protected]>
 
         Unreviewed, reverting r283102, r283103 and r283104.

Modified: trunk/Source/_javascript_Core/jit/JITOpcodes32_64.cpp (283134 => 283135)


--- trunk/Source/_javascript_Core/jit/JITOpcodes32_64.cpp	2021-09-27 21:21:37 UTC (rev 283134)
+++ trunk/Source/_javascript_Core/jit/JITOpcodes32_64.cpp	2021-09-27 21:27:00 UTC (rev 283135)
@@ -504,7 +504,6 @@
 void JIT::emit_op_jeq_ptr(const Instruction* currentInstruction)
 {
     auto bytecode = currentInstruction->as<OpJeqPtr>();
-    auto& metadata = bytecode.metadata(m_profiledCodeBlock);
     VirtualRegister src = ""
     JSValue specialPointer = getConstantOperand(bytecode.m_specialPointer);
     ASSERT(specialPointer.isCell());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to