[PATCH] D82092: [analyzer] Handle `\l` symbol in string literals in exploded-graph-rewriter

Denys Petrov via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Jun 19 04:49:21 PDT 2020


ASDenysPetrov marked an inline comment as done.
ASDenysPetrov added inline comments.


================
Comment at: clang/utils/analyzer/exploded-graph-rewriter.py:432
              .replace('|', '\\|')
+        s = re.sub(r'(?<!\\)\\l', '<br />', s)
         if self._gray_mode:
----------------
This makes the graph data being look from {F12194502} to {F12194498}.


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

https://reviews.llvm.org/D82092





More information about the cfe-commits mailing list