]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Inline function definitions must not refer to objects with internal
authorFlorian Krohm <florian@eich-krohm.de>
Mon, 13 Oct 2014 21:00:00 +0000 (21:00 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Mon, 13 Oct 2014 21:00:00 +0000 (21:00 +0000)
linkage. Remove the INLINE specifier. Related to BZ #339542.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14625

memcheck/mc_main.c

index c1b23feb7fb58953ec767618ba69722717c47abd..86a9574dbf2b143cc72a5801e67693e29ac13367 100644 (file)
@@ -1090,7 +1090,7 @@ static void init_gIgnoredAddressRanges ( void )
                                              VG_(free), IAR_NotIgnored );
 }
 
-INLINE Bool MC_(in_ignored_range) ( Addr a )
+Bool MC_(in_ignored_range) ( Addr a )
 {
    if (LIKELY(gIgnoredAddressRanges == NULL))
       return False;