summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-17 23:14:52 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-17 23:14:52 +0900
commit765eb18a45c6fa8ebc55203bfe477e61c6a12490 (patch)
treec0fe285a1b833b8332efe10ac5a77ac997af763e /vm_core.h
parent2a65498ca2311d8c632d4c7f925f17083347ed93 (diff)
Make VM_DEBUG_VERIFY_METHOD_CACHE derived from VMDEBUG
VM_DEBUG_MODE has been used only here.
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index ae49798898..e4a793365b 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -737,7 +737,7 @@ typedef struct rb_vm_struct {
#endif
#ifndef VM_DEBUG_VERIFY_METHOD_CACHE
-#define VM_DEBUG_VERIFY_METHOD_CACHE (VM_DEBUG_MODE != 0)
+#define VM_DEBUG_VERIFY_METHOD_CACHE (VMDEBUG != 0)
#endif
struct rb_captured_block {