From: Adrian Prantl Date: Tue, 20 Dec 2022 18:05:40 +0000 (-0800) Subject: Add missing textual header to module map X-Git-Tag: upstream/17.0.6~23081 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2cf550a80a0177f8a1aa9ae45c40b0d17ef7f11d;p=platform%2Fupstream%2Fllvm.git Add missing textual header to module map --- diff --git a/clang/include/clang/module.modulemap b/clang/include/clang/module.modulemap index 227beaf..c182da1 100644 --- a/clang/include/clang/module.modulemap +++ b/clang/include/clang/module.modulemap @@ -94,7 +94,10 @@ module Clang_Diagnostics { requires cplusplus module All { header "Basic/AllDiagnostics.h" export * } - module Analysis { header "Analysis/AnalysisDiagnostic.h" export * } + module Analysis { + header "Analysis/AnalysisDiagnostic.h" export * + textual header "Analysis/Analyses/UnsafeBufferUsageGadgets.def" + } module AST { header "AST/ASTDiagnostic.h" export * } module Comment { header "AST/CommentDiagnostic.h" export * } module Driver { header "Driver/DriverDiagnostic.h" export * }