summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Pall <mike>2015-11-04 14:01:37 +0100
committerMike Pall <mike>2015-11-04 14:02:33 +0100
commit7991a669ddf90636f4d768f312e7b73646a65182 (patch)
tree0c1724d27b5793f744ce89bba3960ce5e2fbc9aa /src
parent1393b2f681df3a71cb381b958e8e3221d2dd427d (diff)
downloadluajit-7991a669ddf90636f4d768f312e7b73646a65182.tar.gz
luajit-7991a669ddf90636f4d768f312e7b73646a65182.tar.bz2
luajit-7991a669ddf90636f4d768f312e7b73646a65182.zip
Extend Valgrind suppressions for non-inlined C code.
Thanks to Dennis Schridde.
Diffstat (limited to 'src')
-rw-r--r--src/lj.supp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lj.supp b/src/lj.supp
index 411f2617..acb9e789 100644
--- a/src/lj.supp
+++ b/src/lj.supp
@@ -24,3 +24,18 @@
24 Memcheck:Cond 24 Memcheck:Cond
25 fun:lj_str_new 25 fun:lj_str_new
26} 26}
27{
28 Optimized string compare
29 Memcheck:Addr4
30 fun:lj_str_fastcmp
31}
32{
33 Optimized string compare
34 Memcheck:Addr1
35 fun:lj_str_fastcmp
36}
37{
38 Optimized string compare
39 Memcheck:Cond
40 fun:lj_str_fastcmp
41}