[clang] [analyzer] Allow egraph rewriter not to open the generated HTML directly (PR #85515)
Balazs Benics via cfe-commits
cfe-commits at lists.llvm.org
Mon Mar 18 07:02:08 PDT 2024
================
@@ -1186,6 +1192,14 @@ def main():
"displaying it, dump the rewritten dot file "
"to stdout",
)
+ dump_conflict.add_argument(
+ "--dump-html-only",
+ action="store_const",
+ dest="dump_html_only",
+ const=True,
+ default=False,
+ help="do not open the generated HTML immediately",
----------------
steakhal wrote:
I was expecting this comment to be fairly similar to the one provided for `--dump-dot-only`.
Why is it different?
https://github.com/llvm/llvm-project/pull/85515
More information about the cfe-commits
mailing list