[Driver] Update default sanitizer blacklist location

This is related to moving the sanitizer blacklists to share/
subdirectory.

Differential Revision: https://reviews.llvm.org/D41706

llvm-svn: 322154
This commit is contained in:
Petr Hosek 2018-01-10 02:12:24 +00:00
parent de4ed26b28
commit b931670ae6
5 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ static bool getDefaultBlacklist(const Driver &D, SanitizerMask Kinds,
if (BlacklistFile) {
clang::SmallString<64> Path(D.ResourceDir);
llvm::sys::path::append(Path, BlacklistFile);
llvm::sys::path::append(Path, "share", BlacklistFile);
BLPath = Path.str();
return true;
}