summaryrefslogtreecommitdiff
path: root/yjit/src/core.rs
diff options
context:
space:
mode:
Diffstat (limited to 'yjit/src/core.rs')
-rw-r--r--yjit/src/core.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/yjit/src/core.rs b/yjit/src/core.rs
index d07f8e0c8c..f2bde4a010 100644
--- a/yjit/src/core.rs
+++ b/yjit/src/core.rs
@@ -1669,6 +1669,7 @@ fn make_branch_entry(block: &BlockRef, gen_fn: BranchGenFn) -> BranchRef {
// Add to the list of outgoing branches for the block
let branchref = Rc::new(RefCell::new(branch));
block.borrow_mut().push_outgoing(branchref.clone());
+ incr_counter!(compiled_branch_count);
return branchref;
}