We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e7b080 commit fe05eedCopy full SHA for fe05eed
lib/Driver/ToolChains.cpp
@@ -1148,8 +1148,8 @@ bool toolchains::GenericUnix::sanitizerRuntimeLibExists(
1148
const ArgList &args, StringRef sanitizer) const {
1149
SmallString<128> sanitizerLibPath;
1150
getClangLibraryPathOnLinux(sanitizerLibPath, args, *this);
1151
- llvm::sys::path::append(sanitizerLibPath, getSanitizerRuntimeLibNameForLinux(
1152
- sanitizer, this->getTriple()));
+ llvm::sys::path::append(sanitizerLibPath,
+ getSanitizerRuntimeLibNameForLinux(sanitizer, this->getTriple()));
1153
return llvm::sys::fs::exists(sanitizerLibPath.str());
1154
}
1155
0 commit comments