diff options
-rw-r--r-- | lib/Transforms/Instrumentation/BlackList.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/BlackList.cpp b/lib/Transforms/Instrumentation/BlackList.cpp index d6b29833b6..a3cf84c3f4 100644 --- a/lib/Transforms/Instrumentation/BlackList.cpp +++ b/lib/Transforms/Instrumentation/BlackList.cpp @@ -114,7 +114,8 @@ bool BlackList::isInInit(const GlobalVariable &G) const { inSection("global-init-type", GetGVTypeString(G))); } -bool BlackList::inSection(const StringRef Section, const StringRef Query) const { +bool BlackList::inSection(const StringRef Section, + const StringRef Query) const { StringMap<Regex*>::const_iterator I = Entries.find(Section); if (I == Entries.end()) return false; |