1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

AsmPrinter: Prune an include, NFC

llvm-svn: 238121
This commit is contained in:
Duncan P. N. Exon Smith 2015-05-24 16:54:59 +00:00
parent 2fd8a10302
commit 5cf87ec75c
3 changed files with 3 additions and 1 deletions

View File

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

View File

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

View File

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