AsmPrinter: Prune an include, NFC

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238121 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan P. N. Exon Smith 2015-05-24 16:54:59 +00:00
parent 6c44d1fc4e
commit b976cabda3
3 changed files with 3 additions and 1 deletions

View File

@ -32,6 +32,7 @@ class LexicalScope;
class StringRef; class StringRef;
class DwarfDebug; class DwarfDebug;
class MCSection; class MCSection;
class MDNode;
class DwarfFile { class DwarfFile {
// Target of Dwarf emission, used for sizing of abbreviations. // Target of Dwarf emission, used for sizing of abbreviations.
AsmPrinter *Asm; AsmPrinter *Asm;

View File

@ -8,6 +8,7 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "DwarfStringPool.h" #include "DwarfStringPool.h"
#include "llvm/CodeGen/AsmPrinter.h"
#include "llvm/MC/MCStreamer.h" #include "llvm/MC/MCStreamer.h"
using namespace llvm; using namespace llvm;

View File

@ -11,13 +11,13 @@
#define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFSTRINGPOOL_H #define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFSTRINGPOOL_H
#include "llvm/ADT/StringMap.h" #include "llvm/ADT/StringMap.h"
#include "llvm/CodeGen/AsmPrinter.h"
#include "llvm/CodeGen/DwarfStringPoolEntry.h" #include "llvm/CodeGen/DwarfStringPoolEntry.h"
#include "llvm/Support/Allocator.h" #include "llvm/Support/Allocator.h"
#include <utility> #include <utility>
namespace llvm { namespace llvm {
class AsmPrinter;
class MCSymbol; class MCSymbol;
class MCSection; class MCSection;
class StringRef; class StringRef;