diff options
-rw-r--r-- | clang/test/Analysis/exploded-graph-rewriter/escapes.c | 2 | ||||
-rw-r--r-- | clang/test/Analysis/exploded-graph-rewriter/store.dot | 1 | ||||
-rwxr-xr-x | clang/utils/analyzer/exploded-graph-rewriter.py | 4 |
3 files changed, 6 insertions, 1 deletions
diff --git a/clang/test/Analysis/exploded-graph-rewriter/escapes.c b/clang/test/Analysis/exploded-graph-rewriter/escapes.c index 84de67939cb..ea8c8994419 100644 --- a/clang/test/Analysis/exploded-graph-rewriter/escapes.c +++ b/clang/test/Analysis/exploded-graph-rewriter/escapes.c @@ -9,7 +9,7 @@ // UNSUPPORTED: system-windows void escapes() { - // CHECK: <td align="left"><b>Store: </b></td> + // CHECK: <td align="left"><b>Store: </b> <font color="gray">(0x{{[0-9a-f]*}})</font></td> // CHECK-SAME: <td align="left">foo</td><td align="left">0</td> // CHECK-SAME: <td align="left">&Element\{"foo",0 S64b,char\}</td> // CHECK: <td align="left"><b>Environment: </b></td> diff --git a/clang/test/Analysis/exploded-graph-rewriter/store.dot b/clang/test/Analysis/exploded-graph-rewriter/store.dot index d47a02295e4..7267dd43e89 100644 --- a/clang/test/Analysis/exploded-graph-rewriter/store.dot +++ b/clang/test/Analysis/exploded-graph-rewriter/store.dot @@ -4,6 +4,7 @@ // UNSUPPORTED: system-windows // CHECK: <b>Store: </b> +// CHECK-SAME: <font color="gray">(0x2)</font> // CHECK-SAME: <table border="0"> // CHECK-SAME: <tr> // CHECK-SAME: <td align="left"> diff --git a/clang/utils/analyzer/exploded-graph-rewriter.py b/clang/utils/analyzer/exploded-graph-rewriter.py index d612cfc3ba7..ced5c36bab5 100755 --- a/clang/utils/analyzer/exploded-graph-rewriter.py +++ b/clang/utils/analyzer/exploded-graph-rewriter.py @@ -644,6 +644,10 @@ class DotDumpVisitor(object): if st is None: self._dump('<i> Nothing!</i>') else: + if self._dark_mode: + self._dump(' <font color="gray30">(%s)</font>' % st.ptr) + else: + self._dump(' <font color="gray">(%s)</font>' % st.ptr) if prev_st is not None: if s.store.is_different(prev_st): self._dump('</td></tr><tr><td align="left">') |