This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlpolicy: the point is caution, not low stakes
[perl5.git] / asan_ignore
index 5a8bc5c..e0f5685 100644 (file)
 # nor =signed-integer-overflow worked.
 
 fun:Perl_pp_i_*
+
+# Perl's << is defined as using the underlying C's << operator, with the
+# same undefined behaviour for shifts greater than the word size.
+# (UVs normally, IVs with 'use integer')
+
+fun:Perl_pp_left_shift
+
+# this function numifies the field width in eg printf "%10f".
+# It has its own overflow detection, so don't warn about it
+
+fun:S_expect_number