summaryrefslogtreecommitdiff
path: root/yjit.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-11-17 10:58:56 -0800
committerGitHub <noreply@github.com>2022-11-17 10:58:56 -0800
commit0446d961a09cf324636f6dc0603ae60282c6f1c1 (patch)
tree8a4d1106e19d94df76edf02733b5e74fbb001603 /yjit.rb
parent189e3c0ada43e4adb00d601dfdd26cdc42cffb2d (diff)
downloadruby-0446d961a09cf324636f6dc0603ae60282c6f1c1.tar.gz
YJIT: Fix typo in stats references (#6753)
Diffstat (limited to 'yjit.rb')
-rw-r--r--yjit.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/yjit.rb b/yjit.rb
index eb5376c9c5..a99560acf6 100644
--- a/yjit.rb
+++ b/yjit.rb
@@ -270,8 +270,8 @@ module RubyVM::YJIT
$stderr.puts "code_gc_count: " + ("%10d" % stats[:code_gc_count])
$stderr.puts "num_gc_obj_refs: " + ("%10d" % stats[:num_gc_obj_refs])
$stderr.puts "side_exit_count: " + ("%10d" % stats[:side_exit_count])
- $stderr.puts "total_exit_count: " + ("%10d" % stats[:side_exit_count])
- $stderr.puts "total_insns_count: " + ("%10d" % stats[:total_exit_count])
+ $stderr.puts "total_exit_count: " + ("%10d" % stats[:total_exit_count])
+ $stderr.puts "total_insns_count: " + ("%10d" % stats[:total_insns_count])
if stats.key?(:vm_insns_count)
$stderr.puts "vm_insns_count: " + ("%10d" % stats[:vm_insns_count])
end