summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-03 19:24:49 +0000
committerChris Lattner <sabre@nondot.org>2002-11-03 19:24:49 +0000
commit36aff6ec2ddeadbe06c7e52af8321a8bed2552d5 (patch)
tree7e7cd8ab9303de453a99809ff2857e2c9fef14da /include
parent02a74ccd613edabc2d3468c38f270f5962fec4a4 (diff)
downloadllvm-36aff6ec2ddeadbe06c7e52af8321a8bed2552d5.tar.gz
llvm-36aff6ec2ddeadbe06c7e52af8321a8bed2552d5.tar.bz2
llvm-36aff6ec2ddeadbe06c7e52af8321a8bed2552d5.tar.xz
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
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Reoptimizer/InstLoops.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/llvm/Reoptimizer/InstLoops.h b/include/llvm/Reoptimizer/InstLoops.h
new file mode 100644
index 0000000000..c01008e6ec
--- /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
+