forked from OSchip/llvm-project
SubtargetFeatureInfo.h - remove unnecessary include and forward declarations. NFCI.
Move necessary include down to SubtargetFeatureInfo.cpp.
This commit is contained in:
parent
d9920e0199
commit
68a1cbe11a
|
@ -7,11 +7,10 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "SubtargetFeatureInfo.h"
|
||||
|
||||
#include "Types.h"
|
||||
#include "llvm/Config/llvm-config.h"
|
||||
#include "llvm/TableGen/Error.h"
|
||||
#include "llvm/TableGen/Record.h"
|
||||
|
||||
#include <map>
|
||||
|
||||
using namespace llvm;
|
||||
|
|
|
@ -9,17 +9,12 @@
|
|||
#ifndef LLVM_UTIL_TABLEGEN_SUBTARGETFEATUREINFO_H
|
||||
#define LLVM_UTIL_TABLEGEN_SUBTARGETFEATUREINFO_H
|
||||
|
||||
#include "llvm/TableGen/Error.h"
|
||||
#include "llvm/TableGen/Record.h"
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
class Record;
|
||||
class RecordKeeper;
|
||||
|
||||
struct SubtargetFeatureInfo;
|
||||
using SubtargetFeatureInfoMap = std::map<Record *, SubtargetFeatureInfo, LessRecordByID>;
|
||||
|
||||
|
|
Loading…
Reference in New Issue