mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Don't recalculate the size of the vector each time through the loop.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150436 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2cc494b963
commit
150a371569
@ -561,13 +561,13 @@ unsigned MachineModuleInfo::getPersonalityIndex() const {
|
||||
const Function* Personality = NULL;
|
||||
|
||||
// Scan landing pads. If there is at least one non-NULL personality - use it.
|
||||
for (unsigned i = 0; i != LandingPads.size(); ++i)
|
||||
for (unsigned i = 0, e = LandingPads.size(); i != e; ++i)
|
||||
if (LandingPads[i].Personality) {
|
||||
Personality = LandingPads[i].Personality;
|
||||
break;
|
||||
}
|
||||
|
||||
for (unsigned i = 0; i < Personalities.size(); ++i) {
|
||||
for (unsigned i = 0, e = Personalities.size(); i < e; ++i) {
|
||||
if (Personalities[i] == Personality)
|
||||
return i;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user