forked from OSchip/llvm-project
ValueProfileCollector.h - remove unnecessary includes. NFC.
This commit is contained in:
parent
e605994bb3
commit
5b20c14525
|
@ -11,10 +11,10 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "ValueProfilePlugins.inc"
|
||||
#include "llvm/IR/Function.h"
|
||||
#include "llvm/IR/InstIterator.h"
|
||||
#include "llvm/IR/IntrinsicInst.h"
|
||||
#include "llvm/InitializePasses.h"
|
||||
|
||||
#include <cassert>
|
||||
|
||||
using namespace llvm;
|
||||
|
|
|
@ -17,13 +17,16 @@
|
|||
#define LLVM_ANALYSIS_PROFILE_GEN_ANALYSIS_H
|
||||
|
||||
#include "llvm/Analysis/TargetLibraryInfo.h"
|
||||
#include "llvm/IR/Function.h"
|
||||
#include "llvm/IR/PassManager.h"
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/ProfileData/InstrProf.h"
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class Function;
|
||||
class Instruction;
|
||||
class Value;
|
||||
|
||||
/// Utility analysis that determines what values are worth profiling.
|
||||
/// The actual logic is inside the ValueProfileCollectorImpl, whose job is to
|
||||
/// populate the Candidates vector.
|
||||
|
|
Loading…
Reference in New Issue