diff options
author | Dan Gohman <gohman@apple.com> | 2010-08-07 01:25:32 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-08-07 01:25:32 +0000 |
commit | 8d570bf8e9eb41e2f1c283bd67cc58514b0c429a (patch) | |
tree | a5767e32f894d3dce54a582928f23555941726e6 /include/llvm/Analysis | |
parent | 4afefdec65f198fad803fa8f9f994663488dd608 (diff) | |
download | external_llvm-8d570bf8e9eb41e2f1c283bd67cc58514b0c429a.zip external_llvm-8d570bf8e9eb41e2f1c283bd67cc58514b0c429a.tar.gz external_llvm-8d570bf8e9eb41e2f1c283bd67cc58514b0c429a.tar.bz2 |
Remove assignPassManager's default arguments. It's really
confusing to have different arguments for the same virtual
function at different levels of the class hierarchy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110500 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r-- | include/llvm/Analysis/LoopPass.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/LoopPass.h b/include/llvm/Analysis/LoopPass.h index 0d92de7..1e59b96 100644 --- a/include/llvm/Analysis/LoopPass.h +++ b/include/llvm/Analysis/LoopPass.h @@ -58,7 +58,7 @@ public: /// Assign pass manager to manage this pass virtual void assignPassManager(PMStack &PMS, - PassManagerType PMT = PMT_LoopPassManager); + PassManagerType PMT); /// Return what kind of Pass Manager can manage this pass. virtual PassManagerType getPotentialPassManagerType() const { |