forked from OSchip/llvm-project
[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:
parent
de4ed26b28
commit
b931670ae6
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue