[llvm] 148071f - [llvm] Update module map to include the `IR/ConstantFold` header

Med Ismail Bennani via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 23 11:54:43 PDT 2022


Author: Med Ismail Bennani
Date: 2022-06-23T11:52:25-07:00
New Revision: 148071fbae3f9a1015969376a75a47d433c49a13

URL: https://github.com/llvm/llvm-project/commit/148071fbae3f9a1015969376a75a47d433c49a13
DIFF: https://github.com/llvm/llvm-project/commit/148071fbae3f9a1015969376a75a47d433c49a13.diff

LOG: [llvm] Update module map to include the `IR/ConstantFold` header

This should fix the build failure occuring when enabling modules
(LLVM_ENABLE_MODULES=On):

https://green.lab.llvm.org/green/job/lldb-cmake/44785/

Signed-off-by: Med Ismail Bennani <medismail.bennani at gmail.com>

Added: 
    

Modified: 
    llvm/include/llvm/module.modulemap

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap
index 54ba5fe40f0d3..76b10621541c4 100644
--- a/llvm/include/llvm/module.modulemap
+++ b/llvm/include/llvm/module.modulemap
@@ -244,6 +244,7 @@ module LLVM_intrinsic_gen {
     export *
   }
   module IR_AbstractCallSite { header "IR/AbstractCallSite.h" export * }
+  module IR_ConstantFold { header "IR/ConstantFold.h" export * }
   module IR_ConstantFolder { header "IR/ConstantFolder.h" export * }
   module IR_GlobalVariable { header "IR/GlobalVariable.h" export * }
   module IR_NoFolder { header "IR/NoFolder.h" export * }


        


More information about the llvm-commits mailing list