mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-14 15:25:25 +00:00
use -> instead of (*).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109094 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -327,7 +327,7 @@ bool RegionInfo::isRegion(BasicBlock *entry, BasicBlock *exit) const {
|
|||||||
assert(entry && exit && "entry and exit must not be null!");
|
assert(entry && exit && "entry and exit must not be null!");
|
||||||
typedef DominanceFrontier::DomSetType DST;
|
typedef DominanceFrontier::DomSetType DST;
|
||||||
|
|
||||||
DST *entrySuccs = &(*DF->find(entry)).second;
|
DST *entrySuccs = &DF->find(entry)->second;
|
||||||
|
|
||||||
// Exit is the header of a loop that contains the entry. In this case,
|
// Exit is the header of a loop that contains the entry. In this case,
|
||||||
// the dominance frontier must only contain the exit.
|
// the dominance frontier must only contain the exit.
|
||||||
@@ -340,7 +340,7 @@ bool RegionInfo::isRegion(BasicBlock *entry, BasicBlock *exit) const {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
DST *exitSuccs = &(*DF->find(exit)).second;
|
DST *exitSuccs = &DF->find(exit)->second;
|
||||||
|
|
||||||
// Do not allow edges leaving the region.
|
// Do not allow edges leaving the region.
|
||||||
for (DST::iterator SI = entrySuccs->begin(), SE = entrySuccs->end();
|
for (DST::iterator SI = entrySuccs->begin(), SE = entrySuccs->end();
|
||||||
|
Reference in New Issue
Block a user