vitalybuka added inline comments.
================ Comment at: llvm/lib/Transforms/Utils/SimplifyCFG.cpp:6056 SmallPtrSetImpl<BasicBlock *> *LoopHeaders) { + const Function *Fn = BB->getParent(); + if (Fn && Fn->getMetadata("no_simplify_cfg")) ---------------- So maybe Attribute::SanitizeFuzzer for each function with --fsanitizer=fuzzer and then ``` if (... getFunction()->hasFnAttribute(Attribute::SanitizeFuzzer)) return; ``` https://reviews.llvm.org/D43423 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits