I meant they should be also fixed in
https://github.com/ruby/ruby/pull/6694#discussion_r1019445575
This commit is contained in:
Takashi Kokubun 2022-11-10 10:00:15 -08:00
Родитель 8b3347950e
Коммит 354791c248
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 6FFC433B12EE23DD
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -269,11 +269,11 @@ module RubyVM::YJIT
$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])
if stats.has_key?(:vm_insns_count)
if stats.key?(:vm_insns_count)
$stderr.puts "vm_insns_count: " + ("%10d" % stats[:vm_insns_count])
end
$stderr.puts "yjit_insns_count: " + ("%10d" % stats[:exec_instruction])
if stats.has_key?(:ratio_in_yjit)
if stats.key?(:ratio_in_yjit)
$stderr.puts "ratio_in_yjit: " + ("%9.1f" % stats[:ratio_in_yjit]) + "%"
end
$stderr.puts "avg_len_in_yjit: " + ("%10.1f" % stats[:avg_len_in_yjit])