RJIT: Correct the macro that defines rb_vm_insns_count

This commit is contained in:
Takashi Kokubun 2023-12-19 00:06:21 -08:00
Родитель 8d5af353b2
Коммит 96e4f42b3d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -11,7 +11,7 @@
#include <math.h>
#if USE_YJIT
#if USE_YJIT || USE_RJIT
// The number of instructions executed on vm_exec_core. --yjit-stats uses this.
uint64_t rb_vm_insns_count = 0;
#endif