mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
CoverageFilters.h - reduce unnecessary includes to forward declarations. NFC.
This commit is contained in:
parent
a216c97bbe
commit
ad901cfbf0
@ -33,6 +33,7 @@
|
|||||||
#include "llvm/Support/Process.h"
|
#include "llvm/Support/Process.h"
|
||||||
#include "llvm/Support/Program.h"
|
#include "llvm/Support/Program.h"
|
||||||
#include "llvm/Support/ScopedPrinter.h"
|
#include "llvm/Support/ScopedPrinter.h"
|
||||||
|
#include "llvm/Support/SpecialCaseList.h"
|
||||||
#include "llvm/Support/ThreadPool.h"
|
#include "llvm/Support/ThreadPool.h"
|
||||||
#include "llvm/Support/Threading.h"
|
#include "llvm/Support/Threading.h"
|
||||||
#include "llvm/Support/ToolOutputFile.h"
|
#include "llvm/Support/ToolOutputFile.h"
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#include "CoverageFilters.h"
|
#include "CoverageFilters.h"
|
||||||
#include "CoverageSummaryInfo.h"
|
#include "CoverageSummaryInfo.h"
|
||||||
#include "llvm/Support/Regex.h"
|
#include "llvm/Support/Regex.h"
|
||||||
|
#include "llvm/Support/SpecialCaseList.h"
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
|
@ -13,13 +13,17 @@
|
|||||||
#ifndef LLVM_COV_COVERAGEFILTERS_H
|
#ifndef LLVM_COV_COVERAGEFILTERS_H
|
||||||
#define LLVM_COV_COVERAGEFILTERS_H
|
#define LLVM_COV_COVERAGEFILTERS_H
|
||||||
|
|
||||||
#include "CoverageSummaryInfo.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ProfileData/Coverage/CoverageMapping.h"
|
|
||||||
#include "llvm/Support/SpecialCaseList.h"
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
class SpecialCaseList;
|
||||||
|
|
||||||
|
namespace coverage {
|
||||||
|
class CoverageMapping;
|
||||||
|
struct FunctionRecord;
|
||||||
|
}; // namespace coverage
|
||||||
|
|
||||||
/// Matches specific functions that pass the requirement of this filter.
|
/// Matches specific functions that pass the requirement of this filter.
|
||||||
class CoverageFilter {
|
class CoverageFilter {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user