Check in header file that was missing, thus broke the build
authorChris Lattner <sabre@nondot.org>
Sun, 3 Nov 2002 19:24:49 +0000 (19:24 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 3 Nov 2002 19:24:49 +0000 (19:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4513 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Reoptimizer/InstLoops.h [new file with mode: 0644]

diff --git a/include/llvm/Reoptimizer/InstLoops.h b/include/llvm/Reoptimizer/InstLoops.h
new file mode 100644 (file)
index 0000000..c01008e
--- /dev/null
@@ -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
+