diff options
author | Peter Zhu <[email protected]> | 2024-09-25 11:14:14 -0400 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2024-09-25 11:14:14 -0400 |
commit | b77772496a9e2598366554086e6611fd37b85ec8 () | |
tree | 267e725ba40e8ac808155277ac6d685cc1329fb1 /vm_insnhelper.c | |
parent | c32fd1b5ed6709dfbed3d19cac881886576e231b (diff) |
Don't check poisoned for immediates
-rw-r--r-- | vm_insnhelper.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6058,7 +6058,7 @@ vm_objtostring(const rb_iseq_t *iseq, VALUE recv, CALL_DATA cd) { // Debugging code for ASAN issues such as: // http://ci.rvm.jp/logfiles/brlog.trunk_asan.20240922-002945 - if (asan_poisoned_object_p(recv)) { asan_unpoison_object(recv, false); rb_bug("vm_objtostring: recv is poisoned (type %d)", TYPE(recv)); } |