[clang] [clang][utils] Add auto mode to reduction script (PR #163282)
Arthur Eubanks via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 15 16:14:40 PDT 2025
================
@@ -186,22 +237,30 @@ def skip_function(func_name):
self.expected_output = result
- def check_expected_output(self, args=None, filename=None):
+ def check_expected_output(self, cmd=None, args=None, filename=None):
+ if not cmd:
----------------
aeubanks wrote:
having all these default arguments makes it very hard to reason, it would be nice to clean up the callers to explicitly pass things in
https://github.com/llvm/llvm-project/pull/163282
More information about the cfe-commits
mailing list