still more nit-squashing

This commit is contained in:
Vern Paxson 2021-09-14 16:04:04 -07:00
parent 10d8c2fe6b
commit 81e8354ada
4 changed files with 9 additions and 8 deletions

View file

@ -315,7 +315,7 @@ void ZAMCompiler::RemapFrameDenizens(const std::vector<int>& inst1_to_inst2)
// the form "slotX = slotX". In that
// case, look forward for the next viable
// instruction.
while ( start < int(insts1.size()) &&
while ( start < insts1.size() &&
inst1_to_inst2[start] == -1 )
++start;