Title: [239340] trunk/Source/_javascript_Core
Revision
239340
Author
[email protected]
Date
2018-12-18 10:40:28 -0800 (Tue, 18 Dec 2018)

Log Message

Unreviewed. Appease a build error where we weren't using a variable defined in an "if"

* dfg/DFGAbstractInterpreterInlines.h:
(JSC::DFG::AbstractInterpreter<AbstractStateType>::executeEffects):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (239339 => 239340)


--- trunk/Source/_javascript_Core/ChangeLog	2018-12-18 18:26:33 UTC (rev 239339)
+++ trunk/Source/_javascript_Core/ChangeLog	2018-12-18 18:40:28 UTC (rev 239340)
@@ -1,3 +1,10 @@
+2018-12-18  Saam Barati  <[email protected]>
+
+        Unreviewed. Appease a build error where we weren't using a variable defined in an "if"
+
+        * dfg/DFGAbstractInterpreterInlines.h:
+        (JSC::DFG::AbstractInterpreter<AbstractStateType>::executeEffects):
+
 2018-12-17  Mark Lam  <[email protected]>
 
         Array unshift/shift should not race against the AI in the compiler thread.

Modified: trunk/Source/_javascript_Core/dfg/DFGAbstractInterpreterInlines.h (239339 => 239340)


--- trunk/Source/_javascript_Core/dfg/DFGAbstractInterpreterInlines.h	2018-12-18 18:26:33 UTC (rev 239339)
+++ trunk/Source/_javascript_Core/dfg/DFGAbstractInterpreterInlines.h	2018-12-18 18:40:28 UTC (rev 239340)
@@ -2599,7 +2599,7 @@
             if (structureSet.isFinite() && structureSet.size() == 1) {
                 RegisteredStructure structure = structureSet.onlyStructure();
                 if (auto* rareData = structure->rareDataConcurrently()) {
-                    if (auto* immutableButterfly = rareData->cachedOwnKeysConcurrently()) {
+                    if (!!rareData->cachedOwnKeysConcurrently()) {
                         if (m_graph.isWatchingHavingABadTimeWatchpoint(node)) {
                             m_state.setFoundConstants(true);
                             didFoldClobberWorld();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to