projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02a74cc
)
Check in header file that was missing, thus broke the build
author
Chris Lattner
<sabre@nondot.org>
Sun, 3 Nov 2002 19:24:49 +0000
(19:24 +0000)
committer
Chris 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]
patch
|
blob
diff --git a/include/llvm/Reoptimizer/InstLoops.h
b/include/llvm/Reoptimizer/InstLoops.h
new file mode 100644
(file)
index 0000000..
c01008e
--- /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
+