This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Note that 5.21.6 and 5.21.7 are released
[perl5.git] / asan_ignore
1 # This file intended to be used with clang as
2 #
3 #  clang -fsanitize=foo -fsanitize-blacklist=`pwd`/asan_ignore
4 #
5 # It lists those files / functions that clang's Address Sanitizer should
6 # ignore.
7 #
8 # See http://clang.llvm.org/docs/SanitizerSpecialCaseList.html.
9
10
11 # The pp functions used under 'use integer' shouldn't warn about
12 # integer overflow etc.
13 #
14 # Unfortunately there doesn't seem to be any way to disable just specific
15 # errors (i.e. the integer overflow ones). The manual implies that you can
16 # suffix with =foo for a "tool-specific category", but neither =undefined
17 # nor =signed-integer-overflow worked.
18
19 fun:Perl_pp_i_*