Supress valgrind errors from python.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109818 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2010-07-29 23:15:04 +00:00
parent a8ebd2e64f
commit 432ab2a10c
2 changed files with 55 additions and 0 deletions

View File

@ -5,3 +5,31 @@
fun:_ZN83_GLOBAL_*PassRegistrar12RegisterPassERKN4llvm8PassInfoE
fun:_ZN4llvm8PassInfo12registerPassEv
}
# Python false positives according to
# http://svn.python.org/projects/python/trunk/Misc/README.valgrind
{
ADDRESS_IN_RANGE/Invalid read of size 4
Memcheck:Addr4
obj:/usr/bin/python2.5
}
{
ADDRESS_IN_RANGE/Invalid read of size 4
Memcheck:Value4
obj:/usr/bin/python2.5
}
{
ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
Memcheck:Cond
obj:/usr/bin/python2.5
}
{
We don't care if python leaks
Memcheck:Leak
obj:/usr/bin/python2.5
}

View File

@ -5,3 +5,30 @@
fun:_ZN83_GLOBAL_*PassRegistrar12RegisterPassERKN4llvm8PassInfoE
fun:_ZN4llvm8PassInfo12registerPassEv
}
# Python false positives according to
# http://svn.python.org/projects/python/trunk/Misc/README.valgrind
{
ADDRESS_IN_RANGE/Invalid read of size 4
Memcheck:Addr4
obj:/usr/bin/python2.5
}
{
ADDRESS_IN_RANGE/Invalid read of size 4
Memcheck:Value8
obj:/usr/bin/python2.5
}
{
ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value
Memcheck:Cond
obj:/usr/bin/python2.5
}
{
We don't care if python leaks
Memcheck:Leak
obj:/usr/bin/python2.5
}