Title: [199080] trunk/Source/_javascript_Core
Revision
199080
Author
fpi...@apple.com
Date
2016-04-05 15:57:26 -0700 (Tue, 05 Apr 2016)

Log Message

Unreviewed, fix cloop some more.

* runtime/RegExpInlines.h:
(JSC::RegExp::hasCodeFor):
(JSC::RegExp::hasMatchOnlyCodeFor):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (199079 => 199080)


--- trunk/Source/_javascript_Core/ChangeLog	2016-04-05 22:55:55 UTC (rev 199079)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-04-05 22:57:26 UTC (rev 199080)
@@ -1,5 +1,13 @@
 2016-04-05  Filip Pizlo  <fpi...@apple.com>
 
+        Unreviewed, fix cloop some more.
+
+        * runtime/RegExpInlines.h:
+        (JSC::RegExp::hasCodeFor):
+        (JSC::RegExp::hasMatchOnlyCodeFor):
+
+2016-04-05  Filip Pizlo  <fpi...@apple.com>
+
         Unreviewed, fix cloop.
 
         * jit/CCallHelpers.cpp:

Modified: trunk/Source/_javascript_Core/runtime/RegExpInlines.h (199079 => 199080)


--- trunk/Source/_javascript_Core/runtime/RegExpInlines.h	2016-04-05 22:55:55 UTC (rev 199079)
+++ trunk/Source/_javascript_Core/runtime/RegExpInlines.h	2016-04-05 22:57:26 UTC (rev 199080)
@@ -79,6 +79,7 @@
         if ((charSize == Yarr::Char16) && (m_regExpJITCode.has16BitCode()))
             return true;
 #else
+        UNUSED_PARAM(charSize);
         return true;
 #endif
     }
@@ -171,6 +172,7 @@
         if ((charSize == Yarr::Char16) && (m_regExpJITCode.has16BitCodeMatchOnly()))
             return true;
 #else
+        UNUSED_PARAM(charSize);
         return true;
 #endif
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to