[llvm] r355652 - Make GenericDomTreeConstruction textual instead.

Adrian Prantl via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 7 15:17:12 PST 2019


Author: adrian
Date: Thu Mar  7 15:17:11 2019
New Revision: 355652

URL: http://llvm.org/viewvc/llvm-project?rev=355652&view=rev
Log:
Make GenericDomTreeConstruction textual instead.

I think the problem is that it uses the LLVM_DEBUG macro in funciton bodies.

Modified:
    llvm/trunk/include/llvm/module.modulemap

Modified: llvm/trunk/include/llvm/module.modulemap
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/module.modulemap?rev=355652&r1=355651&r2=355652&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap (original)
+++ llvm/trunk/include/llvm/module.modulemap Thu Mar  7 15:17:11 2019
@@ -353,9 +353,8 @@ module LLVM_Utils {
     exclude header "Support/PluginLoader.h"
     exclude header "Support/Solaris/sys/regset.h"
 
-    // FIXME: The function bodies in this header pull in
-    //        unwanted dependencies that cause linker errors.
-    exclude header "Support/GenericDomTreeConstruction.h"
+    // This header uses the LLVM_DEBUG macro in function bodies.
+    textual header "Support/GenericDomTreeConstruction.h"
 
     // These are intended for textual inclusion.
     textual header "Support/ARMTargetParser.def"




More information about the llvm-commits mailing list