aboutsummaryrefslogtreecommitdiffstats
path: root/yjit.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-10-17 08:36:13 -0700
committerGitHub <noreply@github.com>2023-10-17 11:36:13 -0400
commitd458b4127f1815e76774cb7c3c23b7c31dfd54bc (patch)
tree3b82120b1af94fb255f6d11ac59b210bdbaf19ea /yjit.rb
parent1f7234c0152df5dcf9a73acb352d20fcd3004ddf (diff)
downloadruby-d458b4127f1815e76774cb7c3c23b7c31dfd54bc.tar.gz
YJIT: Add a few missing counters for send fallback (#8681)
Diffstat (limited to 'yjit.rb')
-rw-r--r--yjit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit.rb b/yjit.rb
index a3c03046b4..39c3e6a509 100644
--- a/yjit.rb
+++ b/yjit.rb
@@ -295,7 +295,7 @@ module RubyVM::YJIT
out.puts "num_send: " + format_number(13, stats[:num_send])
out.puts "num_send_known_class: " + format_number_pct(13, stats[:num_send_known_class], stats[:num_send])
out.puts "num_send_polymorphic: " + format_number_pct(13, stats[:num_send_polymorphic], stats[:num_send])
- out.puts "num_send_megamorphic: " + format_number_pct(13, stats[:num_send_megamorphic], stats[:num_send])
+ out.puts "num_send_megamorphic: " + format_number_pct(13, stats[:send_megamorphic], stats[:num_send])
out.puts "num_send_dynamic: " + format_number_pct(13, stats[:num_send_dynamic], stats[:num_send])
if stats[:num_send_x86_rel32] != 0 || stats[:num_send_x86_reg] != 0
out.puts "num_send_x86_rel32: " + format_number(13, stats[:num_send_x86_rel32])