diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-05-04 01:03:02 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-05-04 01:03:02 +0000 |
commit | 9f1569a3f732f2842d866bc26075e3bd79240266 (patch) | |
tree | 8a85963e2463a904b8cbaedf67509e7fff3deb5d /utils/valgrind | |
parent | 20bc5acfb6a9649bf0629daaf0a72f4012424a83 (diff) |
The system suppression file should catch these, but since they *once again* are
not, I'll just add them here and be done with it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130819 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/valgrind')
-rw-r--r-- | utils/valgrind/i386-pc-linux-gnu.supp | 7 | ||||
-rw-r--r-- | utils/valgrind/x86_64-pc-linux-gnu.supp | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/utils/valgrind/i386-pc-linux-gnu.supp b/utils/valgrind/i386-pc-linux-gnu.supp index 0509791582..ddd0a081f0 100644 --- a/utils/valgrind/i386-pc-linux-gnu.supp +++ b/utils/valgrind/i386-pc-linux-gnu.supp @@ -39,3 +39,10 @@ fun:malloc obj:/usr/bin/python* } + +{ + We don't care about anything ld.so does. + Memcheck:Cond + obj:/lib/ld*.so +} + diff --git a/utils/valgrind/x86_64-pc-linux-gnu.supp b/utils/valgrind/x86_64-pc-linux-gnu.supp index 7b2dd4517d..3d15d71470 100644 --- a/utils/valgrind/x86_64-pc-linux-gnu.supp +++ b/utils/valgrind/x86_64-pc-linux-gnu.supp @@ -44,3 +44,10 @@ fun:malloc obj:/usr/bin/python* } + +{ + We don't care about anything ld.so does. + Memcheck:Cond + obj:/lib/ld*.so +} + |