From 2ca1271267aff13b5d45804657b57ae2ae406645 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 17 Apr 2008 11:15:55 -0700 Subject: Fix the blacklist regexps for atomic functions --- tapsets.cxx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'tapsets.cxx') diff --git a/tapsets.cxx b/tapsets.cxx index c17c8ff1..c4cfaa25 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -2464,14 +2464,8 @@ dwarf_query::build_blacklist() blfn += "|.*seq_.*lock.*"; // atomic functions - blfn += "|atomic_long*"; - blfn += "|atomic_add*"; - blfn += "|atomic_dec*"; - blfn += "|atomic_inc*"; - blfn += "|atomic_set*"; - blfn += "|atomic_read*"; - blfn += "|atomic_sub*"; - blfn += "|atomic64_*"; + blfn += "|atomic_.*"; + blfn += "|atomic64_.*"; // few other problematic cases blfn += "|get_bh"; -- cgit