forked from OSchip/llvm-project
Modularize: Include some required headers
DenseMaps require the definition of a type to be available when using a pointer to that type as a key to know how many bits are available for tombstone/etc. llvm-svn: 317360
This commit is contained in:
parent
72f6563bb3
commit
526f30b8aa
|
@ -14,6 +14,7 @@
|
|||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/CodeGen/MachineInstr.h"
|
||||
#include "llvm/IR/CallingConv.h"
|
||||
#include "llvm/MC/MCSymbol.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
|
@ -25,7 +26,6 @@ namespace llvm {
|
|||
class AsmPrinter;
|
||||
class MCExpr;
|
||||
class MCStreamer;
|
||||
class MCSymbol;
|
||||
class raw_ostream;
|
||||
class TargetRegisterInfo;
|
||||
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/UniqueVector.h"
|
||||
#include "llvm/IR/Attributes.h"
|
||||
#include "llvm/IR/Metadata.h"
|
||||
#include "llvm/IR/Type.h"
|
||||
#include "llvm/IR/UseListOrder.h"
|
||||
#include <cassert>
|
||||
#include <cstdint>
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/CodeGen/DIE.h"
|
||||
#include "llvm/IR/Metadata.h"
|
||||
#include "llvm/Support/Allocator.h"
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
|
@ -27,7 +28,6 @@ class DwarfCompileUnit;
|
|||
class DwarfUnit;
|
||||
class LexicalScope;
|
||||
class MCSection;
|
||||
class MDNode;
|
||||
|
||||
class DwarfFile {
|
||||
// Target of Dwarf emission, used for sizing of abbreviations.
|
||||
|
|
Loading…
Reference in New Issue