[PATCH] D138262: [FuzzMutate] Update InstModifierStrategy

Peter Rong via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 18 10:20:39 PST 2022


Peter added inline comments.


================
Comment at: llvm/lib/FuzzMutate/IRMutator.cpp:165-166
     // TODO: We can't handle these instructions.
-    if (Inst.isTerminator() || Inst.isEHPad() ||
-        Inst.isSwiftError() || isa<PHINode>(Inst))
+    if (Inst.isTerminator() || Inst.isEHPad() || Inst.isSwiftError() ||
+        isa<PHINode>(Inst))
       continue;
----------------
arsenm wrote:
> These clang-format changes and comment changes should be separate from the functionality change 
Can we submit only format changes? If so I will push one to upstream.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D138262/new/

https://reviews.llvm.org/D138262



More information about the llvm-commits mailing list