[llvm] [FuzzMutate] Prevent UB caused by parameter ABI attributes (PR #139737)
Manuel Carrasco via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 5 06:39:31 PDT 2025
================
@@ -143,6 +143,9 @@ class InsertFunctionStrategy : public IRMutationStrategy {
using IRMutationStrategy::mutate;
void mutate(BasicBlock &BB, RandomIRBuilder &IB) override;
+
+private:
+ bool isUnsupportedFunction(Function *F);
----------------
mgcarrasco wrote:
Thanks for the review, and sorry for the delay. This has been fixed as requested.
https://github.com/llvm/llvm-project/pull/139737
More information about the llvm-commits
mailing list