Abort early if the optimizer sequence is empty.

This commit is contained in:
chriseth 2020-11-26 16:40:48 +01:00
parent 39adbfc0cc
commit ac9b31d623

View File

@ -364,6 +364,9 @@ void OptimiserSuite::runSequenceUntilStable(
size_t maxRounds
)
{
if (_steps.empty())
return;
size_t codeSize = 0;
for (size_t rounds = 0; rounds < maxRounds; ++rounds)
{