1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

[AnnotationRemarks] Remove unneeded Function.h include (NFC).

This commit is contained in:
Florian Hahn 2021-03-15 21:08:47 +00:00
parent 19f76964c4
commit 1aed9ced3b

View File

@ -14,10 +14,12 @@
#ifndef LLVM_TRANSFORMS_SCALAR_ANNOTATIONREMARKS_H
#define LLVM_TRANSFORMS_SCALAR_ANNOTATIONREMARKS_H
#include "llvm/IR/Function.h"
#include "llvm/IR/PassManager.h"
namespace llvm {
class Function;
struct AnnotationRemarksPass : public PassInfoMixin<AnnotationRemarksPass> {
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
};