[PATCH] D138339: [FuzzMutate] New strategy `ShuffleBlockStrategy`
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 28 16:49:58 PST 2022
arsenm accepted this revision.
arsenm added inline comments.
This revision is now accepted and ready to land.
================
Comment at: llvm/lib/FuzzMutate/IRMutator.cpp:325
+ };
+ // Get all alive instructions that depends on the current instruction.
+ auto getAliveChildren = [&AliveInsts](Instruction *I) {
----------------
s/depends/depend/
================
Comment at: llvm/unittests/FuzzMutate/StrategiesTest.cpp:313
+
+void VerifyBlockShuffle(StringRef Source) {
+ LLVMContext Ctx;
----------------
static?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D138339/new/
https://reviews.llvm.org/D138339
More information about the llvm-commits
mailing list