summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/LoopPass.h
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2011-08-27 02:11:03 +0000
committerAndrew Trick <atrick@apple.com>2011-08-27 02:11:03 +0000
commitb84619223051fd965cc64e70c8f6b70f7ae6ae85 (patch)
treefe926c6a4345b9fb8e658a468fc63dc5924ffdfe /include/llvm/Analysis/LoopPass.h
parent0005cc7a0a4834ff8915546855864eac22b5f7ea (diff)
downloadllvm-b84619223051fd965cc64e70c8f6b70f7ae6ae85.tar.gz
llvm-b84619223051fd965cc64e70c8f6b70f7ae6ae85.tar.bz2
llvm-b84619223051fd965cc64e70c8f6b70f7ae6ae85.tar.xz
Fix PassManager stack depths.
Patch by Xiaoyi Guo! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138695 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/LoopPass.h')
-rw-r--r--include/llvm/Analysis/LoopPass.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/LoopPass.h b/include/llvm/Analysis/LoopPass.h
index 1603d2ea7a..e6ed9bccee 100644
--- a/include/llvm/Analysis/LoopPass.h
+++ b/include/llvm/Analysis/LoopPass.h
@@ -84,7 +84,7 @@ public:
class LPPassManager : public FunctionPass, public PMDataManager {
public:
static char ID;
- explicit LPPassManager(int Depth);
+ explicit LPPassManager();
/// run - Execute all of the passes scheduled for execution. Keep track of
/// whether any of the passes modifies the module, and if so, return true.