[llvm] 98fd268 - llvm/module.modulemap: Exclude `Support/Host.h`

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 16 09:20:34 PDT 2023


Author: NAKAMURA Takumi
Date: 2023-04-17T01:20:04+09:00
New Revision: 98fd268f56c2b041e077cf784e411691ff12e91d

URL: https://github.com/llvm/llvm-project/commit/98fd268f56c2b041e077cf784e411691ff12e91d
DIFF: https://github.com/llvm/llvm-project/commit/98fd268f56c2b041e077cf784e411691ff12e91d.diff

LOG: llvm/module.modulemap: Exclude `Support/Host.h`

It is declared as `deprecated`.

Added: 
    

Modified: 
    llvm/include/llvm/module.modulemap

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap
index 741e0a83b1b7..48ce760d0f8c 100644
--- a/llvm/include/llvm/module.modulemap
+++ b/llvm/include/llvm/module.modulemap
@@ -417,6 +417,9 @@ module LLVM_Utils {
     umbrella "Support"
     module * { export * }
 
+    // Exclude this; deprecated.
+    exclude header "Support/Host.h"
+
     // Exclude this; it should only be used on Windows.
     exclude header "Support/Windows/WindowsSupport.h"
 


        


More information about the llvm-commits mailing list