summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/dfg/DFGCSEPhase.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGCSEPhase.h')
-rw-r--r--Source/JavaScriptCore/dfg/DFGCSEPhase.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGCSEPhase.h b/Source/JavaScriptCore/dfg/DFGCSEPhase.h
index 017bf5a4b..1dfd2b7dd 100644
--- a/Source/JavaScriptCore/dfg/DFGCSEPhase.h
+++ b/Source/JavaScriptCore/dfg/DFGCSEPhase.h
@@ -40,9 +40,11 @@ class Graph;
// it is rather profitable. It has fairly accurate heap modeling and will match
// a wide range of subexpression similarities. It's known to produce big wins
// on a few benchmarks, and is relatively cheap to run.
-
bool performCSE(Graph&);
+// Perform just block-local store elimination.
+bool performStoreElimination(Graph&);
+
} } // namespace JSC::DFG
#endif // ENABLE(DFG_JIT)