update llvm to 615644763ffc (#7504)

* Fixes some build issues in clang headers that have changed upstream
* Adds patch 0011 to work around an upstream commit that broke Bazel
builds
This commit is contained in:
Lucile Rose Nihlen
2026-07-14 20:32:11 +00:00
committed by GitHub
parent d47de6443e
commit 6c010816a4
4 changed files with 31 additions and 7 deletions
+3 -4
View File
@@ -864,11 +864,10 @@ auto ExportFunctionSpecializationToCpp(
auto* template_arg_list = clang::TemplateArgumentList::CreateCopy(
context.ast_context(), template_args);
function_decl->setFunctionTemplateSpecialization(
context.ast_context(), function_template_decl, template_arg_list,
function_template_decl, template_arg_list,
/*InsertPos=*/nullptr, clang::TSK_ExplicitSpecialization,
/*TemplateParams=*/nullptr, /*TemplateArgsAsWritten=*/nullptr,
/*PointOfInstantiation=*/clang::SourceLocation(),
/*AddSpecialization=*/true);
/*TemplateArgsAsWritten=*/nullptr,
/*PointOfInstantiation=*/clang::SourceLocation());
return true;
}