summaryrefslogtreecommitdiff
path: root/ext/opcache/Optimizer/scdf.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/opcache/Optimizer/scdf.h')
-rw-r--r--ext/opcache/Optimizer/scdf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/scdf.h b/ext/opcache/Optimizer/scdf.h
index 64b4b61340..1ab1cec3bd 100644
--- a/ext/opcache/Optimizer/scdf.h
+++ b/ext/opcache/Optimizer/scdf.h
@@ -89,7 +89,7 @@ static inline uint32_t scdf_edge(zend_cfg *cfg, int from, int to) {
ZEND_UNREACHABLE();
}
-static inline zend_bool scdf_is_edge_feasible(scdf_ctx *scdf, int from, int to) {
+static inline bool scdf_is_edge_feasible(scdf_ctx *scdf, int from, int to) {
uint32_t edge = scdf_edge(&scdf->ssa->cfg, from, to);
return zend_bitset_in(scdf->feasible_edges, edge);
}