Update the LLVM submodule. (#935)

Among other things, this brings compatibility fixes with upstream
GoogleTest and Windows Bazel build support fixes.
This commit is contained in:
Chandler Carruth
2021-11-02 18:14:58 -07:00
committed by GitHub
parent 6d822ababb
commit ec7a670d84
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ static void InitReplacements(RefactoringTool* tool) {
for (const std::string& path : tool->getSourcePaths()) {
llvm::ErrorOr<const clang::FileEntry*> file = files.getFile(path);
if (file.getError()) {
llvm::report_fatal_error("Error accessing `" + path +
llvm::report_fatal_error(llvm::Twine("Error accessing `") + path +
"`: " + file.getError().message() + "\n");
}
repl.insert({files.getCanonicalName(*file).str(), {}});