1 Star 0 Fork 11

Zhangyichun/perl

forked from openKylin/perl 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
asan_ignore 983 Bytes
一键复制 编辑 原始数据 按行查看 历史
openKylinBot 提交于 2022-05-14 02:40 . Import Upstream version 5.30.0
# This file intended to be used with clang as
#
# clang -fsanitize=foo -fsanitize-blacklist=`pwd`/asan_ignore
#
# It lists those files / functions that clang's Address Sanitizer should
# ignore.
#
# See http://clang.llvm.org/docs/SanitizerSpecialCaseList.html.
# The pp functions used under 'use integer' shouldn't warn about
# integer overflow etc.
#
# Unfortunately there doesn't seem to be any way to disable just specific
# errors (i.e. the integer overflow ones). The manual implies that you can
# suffix with =foo for a "tool-specific category", but neither =undefined
# 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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ZhangyichunCC/perl.git
git@gitee.com:ZhangyichunCC/perl.git
ZhangyichunCC
perl
perl
openkylin/yangtze

搜索帮助