diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-07 20:08:05 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-07 20:08:05 +0000 |
commit | 14464bc61c116d6bcf7c77d3956f37921e79338e (patch) | |
tree | caf0d9f4c9c5fd6c3a1a5f94b6c04943a55187a3 /llvm/lib/CodeGen | |
parent | c7fc432b1913a3e28445408ddbc9f0922248d52f (diff) | |
download | bcm5719-llvm-14464bc61c116d6bcf7c77d3956f37921e79338e.tar.gz bcm5719-llvm-14464bc61c116d6bcf7c77d3956f37921e79338e.zip |
Use of operator* is redundant and confusing here.
llvm-svn: 53197
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/Collector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/Collector.cpp b/llvm/lib/CodeGen/Collector.cpp index bbb3b938ad9..1a1fb7c7338 100644 --- a/llvm/lib/CodeGen/Collector.cpp +++ b/llvm/lib/CodeGen/Collector.cpp @@ -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) { |