[PATCH] D59440: add steps to preprocess file and reduce command line args

Reid Kleckner via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Mar 18 15:53:56 PDT 2019


rnk added a comment.

Aside from the buglet, I'm happy with this, but I wanted to wait until @george.burgess.iv takes a look.



================
Comment at: clang/utils/creduce-clang-crash.py:44
+
+def quote_cmd(cmd):
+  for i, arg in enumerate(cmd):
----------------
This modifies cmd in place, so multiple calls to quote_cmd will get "more quoted" with more calls, right?


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

https://reviews.llvm.org/D59440





More information about the cfe-commits mailing list