forked from OSchip/llvm-project
[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:
parent
41ebd19681
commit
c0906f6b21
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue