diff --git a/include/llvm/Reoptimizer/InstLoops.h b/include/llvm/Reoptimizer/InstLoops.h new file mode 100644 index 00000000000..c01008e6ec1 --- /dev/null +++ b/include/llvm/Reoptimizer/InstLoops.h @@ -0,0 +1,16 @@ +//===-- InstLoops.h - interface to insert instrumentation --------*- C++ -*--=// +// +// Instrument every back edges with counters +//===----------------------------------------------------------------------===// + +#ifndef LLVM_REOPTIMIZERINSTLOOPS_H +#define LLVM_REOPTIMIZERINSTLOOPS_H + +class Pass; + +// createInstLoopsPass - Create a new pass to add counters on back edges +// +Pass *createInstLoopsPass(); + +#endif +