diff options
author | Alan Wu <[email protected]> | 2021-10-06 17:44:19 -0400 |
---|---|---|
committer | Alan Wu <[email protected]> | 2021-10-20 18:19:42 -0400 |
commit | 7c08538aa3a366409784f6a8b7aa013b85633803 (patch) | |
tree | cae00db737ff8fa27ba347f9a2960fe4f7e8fadd /vm.c | |
parent | 884b6f3dbb33ef98fbfe96e7c70ccc8bb5735829 (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.c')
-rw-r--r-- | vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1853,7 +1853,7 @@ rb_vm_check_redefinition_opt_method(const rb_method_entry_t *me, VALUE klass) if (st_lookup(vm_opt_method_def_table, (st_data_t)me->def, &bop)) { int flag = vm_redefinition_check_flag(klass); rb_yjit_bop_redefined(klass, me, (enum ruby_basic_operators)bop); - ruby_vm_redefined_flag[bop] |= flag; + ruby_vm_redefined_flag[bop] |= flag; } } } |