Title: [193754] trunk/Source/_javascript_Core
Revision
193754
Author
o...@webkit.org
Date
2015-12-08 09:35:31 -0800 (Tue, 08 Dec 2015)

Log Message

Fix the !ENABLE(DFG_JIT) build after r193649
https://bugs.webkit.org/show_bug.cgi?id=151985

Reviewed by Saam Barati.

* jit/JITOpcodes.cpp:
(JSC::JIT::emitSlow_op_loop_hint):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (193753 => 193754)


--- trunk/Source/_javascript_Core/ChangeLog	2015-12-08 16:42:18 UTC (rev 193753)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-12-08 17:35:31 UTC (rev 193754)
@@ -1,3 +1,13 @@
+2015-12-08  Csaba Osztrogonác  <o...@webkit.org>
+
+        Fix the !ENABLE(DFG_JIT) build after r193649
+        https://bugs.webkit.org/show_bug.cgi?id=151985
+
+        Reviewed by Saam Barati.
+
+        * jit/JITOpcodes.cpp:
+        (JSC::JIT::emitSlow_op_loop_hint):
+
 2015-12-08  Alberto Garcia  <be...@igalia.com>
 
         Unreviewed. Remove unnecessary check for 0 in commitSize().

Modified: trunk/Source/_javascript_Core/jit/JITOpcodes.cpp (193753 => 193754)


--- trunk/Source/_javascript_Core/jit/JITOpcodes.cpp	2015-12-08 16:42:18 UTC (rev 193753)
+++ trunk/Source/_javascript_Core/jit/JITOpcodes.cpp	2015-12-08 17:35:31 UTC (rev 193754)
@@ -915,6 +915,8 @@
 
         emitJumpSlowToHot(jump(), OPCODE_LENGTH(op_loop_hint));
     }
+#else
+    UNUSED_PARAM(iter);
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to