[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / include / llvm / Transforms / Instrumentation / InstrOrderFile.h
blobf1245d8fd78549e2a493108049c8346f6a42e86d
1 //===- InstrOrderFile.h ---- Late IR instrumentation for order file ----===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //===----------------------------------------------------------------------===//
12 #ifndef LLVM_TRANSFORMS_INSTRORDERFILE_H
13 #define LLVM_TRANSFORMS_INSTRORDERFILE_H
15 #include "llvm/IR/PassManager.h"
17 namespace llvm {
18 class Module;
20 /// The instrumentation pass for recording function order.
21 class InstrOrderFilePass : public PassInfoMixin<InstrOrderFilePass> {
22 public:
23 PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM);
26 } // end namespace llvm
28 #endif // LLVM_TRANSFORMS_INSTRORDERFILE_H