forked from OSchip/llvm-project
Move SampleProfile.h into IPO along with the rest of the IPO pass headers
llvm-svn: 328262
This commit is contained in:
parent
a595456731
commit
301627f875
|
@ -1,4 +1,4 @@
|
|||
//===- Transforms/SampleProfile.h - SamplePGO pass --------------*- C++ -*-===//
|
||||
//===- SampleProfile.h - SamplePGO pass ---------- --------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
|
@ -12,8 +12,8 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_TRANSFORMS_SAMPLEPROFILE_H
|
||||
#define LLVM_TRANSFORMS_SAMPLEPROFILE_H
|
||||
#ifndef LLVM_TRANSFORMS_IPO_SAMPLEPROFILE_H
|
||||
#define LLVM_TRANSFORMS_IPO_SAMPLEPROFILE_H
|
||||
|
||||
#include "llvm/IR/PassManager.h"
|
||||
#include <string>
|
|
@ -80,6 +80,7 @@
|
|||
#include "llvm/Transforms/IPO/LowerTypeTests.h"
|
||||
#include "llvm/Transforms/IPO/PartialInlining.h"
|
||||
#include "llvm/Transforms/IPO/SCCP.h"
|
||||
#include "llvm/Transforms/IPO/SampleProfile.h"
|
||||
#include "llvm/Transforms/IPO/StripDeadPrototypes.h"
|
||||
#include "llvm/Transforms/IPO/SyntheticCountsPropagation.h"
|
||||
#include "llvm/Transforms/IPO/WholeProgramDevirt.h"
|
||||
|
@ -87,7 +88,6 @@
|
|||
#include "llvm/Transforms/InstrProfiling.h"
|
||||
#include "llvm/Transforms/Instrumentation/BoundsChecking.h"
|
||||
#include "llvm/Transforms/PGOInstrumentation.h"
|
||||
#include "llvm/Transforms/SampleProfile.h"
|
||||
#include "llvm/Transforms/Scalar/ADCE.h"
|
||||
#include "llvm/Transforms/Scalar/AlignmentFromAssumptions.h"
|
||||
#include "llvm/Transforms/Scalar/BDCE.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Transforms/SampleProfile.h"
|
||||
#include "llvm/Transforms/IPO/SampleProfile.h"
|
||||
#include "llvm/ADT/ArrayRef.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/DenseSet.h"
|
||||
|
|
Loading…
Reference in New Issue