Reland "[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: 322452
This commit is contained in:
Petr Hosek 2018-01-14 03:43:17 +00:00
parent 77cfaca5f6
commit 84d036a0d1
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;
}