forked from OSchip/llvm-project
Use of operator* is redundant and confusing here.
llvm-svn: 53197
This commit is contained in:
parent
c7fc432b19
commit
14464bc61c
|
@ -360,7 +360,7 @@ void MachineCodeAnalysis::FindSafePoints(MachineFunction &MF) {
|
|||
for (MachineBasicBlock::iterator MI = BBI->begin(),
|
||||
ME = BBI->end(); MI != ME; ++MI)
|
||||
if (MI->getDesc().isCall())
|
||||
VisitCallPoint(*MI);
|
||||
VisitCallPoint(MI);
|
||||
}
|
||||
|
||||
void MachineCodeAnalysis::FindStackOffsets(MachineFunction &MF) {
|
||||
|
|
Loading…
Reference in New Issue