mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Use of operator* is redundant and confusing here.
llvm-svn: 53197
This commit is contained in:
parent
7fb6670108
commit
ed34aec9a8
@ -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
Block a user