Title: [226942] trunk/Source/_javascript_Core
Revision
226942
Author
sbar...@apple.com
Date
2018-01-14 11:43:39 -0800 (Sun, 14 Jan 2018)

Log Message

Unreviewed. r226928 broke the CLOOP build. This patch fixes the CLOOP build.

* bytecode/CallLinkStatus.cpp:
(JSC::CallLinkStatus::computeFromLLInt):
(JSC::CallLinkStatus::computeExitSiteData):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (226941 => 226942)


--- trunk/Source/_javascript_Core/ChangeLog	2018-01-14 07:16:21 UTC (rev 226941)
+++ trunk/Source/_javascript_Core/ChangeLog	2018-01-14 19:43:39 UTC (rev 226942)
@@ -1,3 +1,11 @@
+2018-01-14  Saam Barati  <sbar...@apple.com>
+
+        Unreviewed. r226928 broke the CLOOP build. This patch fixes the CLOOP build.
+
+        * bytecode/CallLinkStatus.cpp:
+        (JSC::CallLinkStatus::computeFromLLInt):
+        (JSC::CallLinkStatus::computeExitSiteData):
+
 2018-01-13  Mark Lam  <mark....@apple.com>
 
         Replace all use of ConstExprPoisoned with Poisoned.

Modified: trunk/Source/_javascript_Core/bytecode/CallLinkStatus.cpp (226941 => 226942)


--- trunk/Source/_javascript_Core/bytecode/CallLinkStatus.cpp	2018-01-14 07:16:21 UTC (rev 226941)
+++ trunk/Source/_javascript_Core/bytecode/CallLinkStatus.cpp	2018-01-14 19:43:39 UTC (rev 226942)
@@ -64,8 +64,6 @@
         // takes slow path.
         return takesSlowPath();
     }
-#else
-    UNUSED_PARAM(locker);
 #endif
 
     Instruction* instruction = profiledBlock->instructions().begin() + bytecodeIndex;
@@ -115,7 +113,6 @@
     exitSiteData.badFunction =
         codeBlock->hasExitSite(locker, DFG::FrequentExitSite(bytecodeIndex, BadCell));
 #else
-    UNUSED_PARAM(locker);
     UNUSED_PARAM(profiledBlock);
     UNUSED_PARAM(bytecodeIndex);
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to