1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-29 01:22:11 +00:00

LibJS: Always inline the bytecode instruction iterator's operator++

This commit is contained in:
Andreas Kling 2021-10-25 13:37:02 +02:00
parent a97d75bb63
commit d203a86900
3 changed files with 32 additions and 31 deletions

View file

@ -64,10 +64,4 @@ void BasicBlock::grow(size_t additional_size)
VERIFY(m_buffer_size <= m_buffer_capacity);
}
void InstructionStreamIterator::operator++()
{
VERIFY(!at_end());
m_offset += dereference().length();
}
}