Title: [169341] trunk/Source/_javascript_Core
Revision
169341
Author
commit-qu...@webkit.org
Date
2014-05-26 06:57:20 -0700 (Mon, 26 May 2014)

Log Message

JSC CLoop warning fix
https://bugs.webkit.org/show_bug.cgi?id=133259

Patch by Eva Balazsfalvi <evab.u-sze...@partner.samsung.com> on 2014-05-26
Reviewed by Darin Adler.

* llint/LLIntSlowPaths.cpp:
(JSC::LLInt::LLINT_SLOW_PATH_DECL):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (169340 => 169341)


--- trunk/Source/_javascript_Core/ChangeLog	2014-05-26 13:55:24 UTC (rev 169340)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-05-26 13:57:20 UTC (rev 169341)
@@ -1,3 +1,13 @@
+2014-05-26  Eva Balazsfalvi  <evab.u-sze...@partner.samsung.com>
+
+        JSC CLoop warning fix
+        https://bugs.webkit.org/show_bug.cgi?id=133259
+
+        Reviewed by Darin Adler.
+
+        * llint/LLIntSlowPaths.cpp:
+        (JSC::LLInt::LLINT_SLOW_PATH_DECL):
+
 2014-05-24  Andreas Kling  <akl...@apple.com>
 
         Object.prototype.toString() should use cached strings for null/undefined.

Modified: trunk/Source/_javascript_Core/llint/LLIntSlowPaths.cpp (169340 => 169341)


--- trunk/Source/_javascript_Core/llint/LLIntSlowPaths.cpp	2014-05-26 13:55:24 UTC (rev 169340)
+++ trunk/Source/_javascript_Core/llint/LLIntSlowPaths.cpp	2014-05-26 13:57:20 UTC (rev 169341)
@@ -422,6 +422,7 @@
     
     LLINT_RETURN_TWO(jumpTarget, exec->topOfFrame());
 #else // ENABLE(JIT)
+    UNUSED_PARAM(pc);
     codeBlock->dontJITAnytimeSoon();
     LLINT_RETURN_TWO(0, 0);
 #endif // ENABLE(JIT)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to