[PATCH] D91372: Some updates/fixes to the creduce script.
George Burgess IV via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Nov 12 12:55:05 PST 2020
george.burgess.iv accepted this revision.
george.burgess.iv added a comment.
This revision is now accepted and ready to land.
thanks!
================
Comment at: clang/utils/creduce-clang-crash.py:156
+ def skip_function(func_name):
+ for name in filters:
+ if name in func_name:
----------------
nit `return any(name in func_name for name in filters)`?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D91372/new/
https://reviews.llvm.org/D91372
More information about the cfe-commits
mailing list