mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Oops, check in this file too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110496 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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());
|
||||
|
||||
|
Reference in New Issue
Block a user