From: Richard Smith Date: Mon, 13 Oct 2014 00:41:03 +0000 (+0000) Subject: [modules] Stop excluding Support/Debug.h from the Support module. This header X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f591f3755e1e1fc1ee5c7aceeea4413d923cb386;p=oota-llvm.git [modules] Stop excluding Support/Debug.h from the Support module. This header 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 --- diff --git a/include/llvm/module.modulemap b/include/llvm/module.modulemap index bae6f6da437..46f6e40041e 100644 --- a/include/llvm/module.modulemap +++ b/include/llvm/module.modulemap @@ -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" diff --git a/lib/Analysis/BlockFrequencyInfoImpl.cpp b/lib/Analysis/BlockFrequencyInfoImpl.cpp index 9da93424a8b..06b8acd9c75 100644 --- a/lib/Analysis/BlockFrequencyInfoImpl.cpp +++ b/lib/Analysis/BlockFrequencyInfoImpl.cpp @@ -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;