[PATCH] D62761: [analyzer] exploded-graph-rewriter: Implement a --diff mode.

Csaba Dabis via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Jun 17 13:59:39 PDT 2019


Charusso added inline comments.


================
Comment at: clang/utils/analyzer/exploded-graph-rewriter.py:287
                                         .replace('\\}', '}') \
+                                        .replace('\\\\', '\\') \
                                         .replace('\\<', '\\\\<') \
----------------
Ugh, wait with that a little-bit. I have forgot to create a patch! We have to escape the escapes.
E.g. `"\x42"` -> `"\\x42"`.


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

https://reviews.llvm.org/D62761





More information about the cfe-commits mailing list