Revert "Add debugging code to vm_objtostring in ASAN"

This reverts commit c32fd1b5ed.

The bug seems to have been fixed with 6acf03618a.
This commit is contained in:
Peter Zhu 2024-10-07 10:47:30 -04:00
Родитель fa547b809a
Коммит a6cf132475
1 изменённых файлов: 0 добавлений и 7 удалений

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

@ -6056,13 +6056,6 @@ VALUE rb_mod_name(VALUE);
static VALUE
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 (!RB_IMMEDIATE_P(recv) && asan_poisoned_object_p(recv)) {
asan_unpoison_object(recv, false);
rb_bug("vm_objtostring: recv is poisoned (type %d)", TYPE(recv));
}
int type = TYPE(recv);
if (type == T_STRING) {
return recv;