aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis/LoopPass.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-03-19 21:56:59 +0000
committerDevang Patel <dpatel@apple.com>2008-03-19 21:56:59 +0000
commit3aab76e3790476cc00f04706e7c6d71fcf2e92a1 (patch)
tree88b334fb5710b2d63089bdb840135dc1e8f7ebfa /include/llvm/Analysis/LoopPass.h
parent9f15357bf1a50b2bec0864bfbf4d6a8aa8c8148c (diff)
downloadexternal_llvm-3aab76e3790476cc00f04706e7c6d71fcf2e92a1.zip
external_llvm-3aab76e3790476cc00f04706e7c6d71fcf2e92a1.tar.gz
external_llvm-3aab76e3790476cc00f04706e7c6d71fcf2e92a1.tar.bz2
PassInfo keep tracks whether a pass is an analysis pass or not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48554 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 8ebbbaf..c0cdce2 100644
--- a/include/llvm/Analysis/LoopPass.h
+++ b/include/llvm/Analysis/LoopPass.h
@@ -29,7 +29,7 @@ class PMStack;
class LoopPass : public Pass {
public:
- explicit LoopPass(intptr_t pid, bool AP = false) : Pass(pid, AP) {}
+ explicit LoopPass(intptr_t pid) : Pass(pid) {}
// runOnLoop - This method should be implemented by the subclass to perform
// whatever action is necessary for the specfied Loop.