diff options
author | Dan Gohman <gohman@apple.com> | 2010-08-07 01:04:15 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-08-07 01:04:15 +0000 |
commit | 12376a8df60e1ebd6e6e194cb5ecb0279a2d74a8 (patch) | |
tree | 8ed586293e120036860c6b54a210b6cd4c4ac51b /lib/VMCore/PassManager.cpp | |
parent | 4bdeede8c7ea307b3f6192ec4f425debda948998 (diff) |
Oops, check in this file too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110496 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/PassManager.cpp')
-rw-r--r-- | lib/VMCore/PassManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/PassManager.cpp b/lib/VMCore/PassManager.cpp index ae10b4c200..8f895c81bc 100644 --- a/lib/VMCore/PassManager.cpp +++ b/lib/VMCore/PassManager.cpp @@ -1707,8 +1707,8 @@ void PMStack::push(PMDataManager *PM) { } // Dump content of the pass manager stack. -void PMStack::dump() { - for (std::deque<PMDataManager *>::iterator I = S.begin(), +void PMStack::dump() const { + for (std::vector<PMDataManager *>::const_iterator I = S.begin(), E = S.end(); I != E; ++I) printf("%s ", (*I)->getAsPass()->getPassName()); |