[modules] Stop excluding Support/Debug.h from the Support module. This header
authorRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 13 Oct 2014 00:41:03 +0000 (00:41 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 13 Oct 2014 00:41:03 +0000 (00:41 +0000)
has been modular since r206822, and excluding it was leading to workarounds
such as the one in r219592, which this change removes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219593 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/module.modulemap
lib/Analysis/BlockFrequencyInfoImpl.cpp

index bae6f6da43751a99b30c68cbbf4d988dd1875333..46f6e40041edeb84692e0bbd43d266f6ee92a557 100644 (file)
@@ -152,9 +152,6 @@ module LLVM_Utils {
     // Exclude this; it's only included on AIX and fundamentally non-modular.
     exclude header "Support/AIXDataTypesFix.h"
 
-    // Exclude this; it's fundamentally non-modular.
-    exclude header "Support/Debug.h"
-
     // Exclude this; it's fundamentally non-modular.
     exclude header "Support/PluginLoader.h"
 
index 9da93424a8b05cff5d2be3f720cc218b0069f4ca..06b8acd9c75f26cfc10012116b91202e31f41d2a 100644 (file)
@@ -13,7 +13,6 @@
 
 #include "llvm/Analysis/BlockFrequencyInfoImpl.h"
 #include "llvm/ADT/SCCIterator.h"
-#include "llvm/Support/Debug.h"
 #include "llvm/Support/raw_ostream.h"
 
 using namespace llvm;