[SLP] Remove stray semicolon to make bots happy

Certain bots (e.g. sanitizer-x86_64-linux-android) appear to be running with strict c++98 flags which disallow ; at global scope.
This commit is contained in:
Philip Reames 2022-01-20 14:07:46 -08:00
parent 41ebd19681
commit c0906f6b21
1 changed files with 1 additions and 1 deletions

View File

@ -7256,7 +7256,7 @@ BoUpSLP::BlockScheduling::buildBundle(ArrayRef<Value *> VL) {
}
assert(Bundle && "Failed to find schedule bundle");
return Bundle;
};
}
// Groups the instructions to a bundle (which is then a single scheduling entity)
// and schedules instructions until the bundle gets ready.