Revert "[Driver] Update default sanitizer blacklist location"

This reverts commit r322258: broke the dfsan build.

llvm-svn: 322260
This commit is contained in:
Petr Hosek 2018-01-11 07:05:38 +00:00
parent d79bbf4474
commit 605d3b9225
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, "share", BlacklistFile);
llvm::sys::path::append(Path, BlacklistFile);
BLPath = Path.str();
return true;
}