From: Chris Lattner Date: Sun, 3 Nov 2002 19:24:49 +0000 (+0000) Subject: Check in header file that was missing, thus broke the build X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=36aff6ec2ddeadbe06c7e52af8321a8bed2552d5;p=oota-llvm.git Check in header file that was missing, thus broke the build git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4513 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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 +