summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2021-10-06 17:44:19 -0400
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:42 -0400
commit7c08538aa3a366409784f6a8b7aa013b85633803 (patch)
treecae00db737ff8fa27ba347f9a2960fe4f7e8fadd /vm_core.h
parent884b6f3dbb33ef98fbfe96e7c70ccc8bb5735829 (diff)
Cleanup diff against upstream. Add comments
I did a `git diff --stat` against upstream and looked at all the files that are outside of YJIT to come up with these minor changes.
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm_core.h b/vm_core.h
index 6fd24e962f..79aa22d3de 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -236,8 +236,8 @@ STATIC_ASSERT(sizeof_iseq_inline_constant_cache_entry,
struct iseq_inline_constant_cache {
struct iseq_inline_constant_cache_entry *entry;
- // For YJIT: the index to the opt_getinlinecache instruction in the same iseq.
- // It's set during compile time and constant once set.
+ // For YJIT: the index to the opt_getinlinecache instruction in the same iseq.
+ // It's set during compile time and constant once set.
unsigned get_insn_idx;
};