diff options
author | Artem Dergachev <artem.dergachev@gmail.com> | 2019-10-18 20:15:41 +0000 |
---|---|---|
committer | Artem Dergachev <artem.dergachev@gmail.com> | 2019-10-18 20:15:41 +0000 |
commit | c6921379f55ee566fb62ba5aa47b217cf7c5d960 (patch) | |
tree | 62e4f3df5240727bb80cae03321f452b25fa7bb8 /clang/utils/analyzer/exploded-graph-rewriter.py | |
parent | 2b4f6df91775a4f13233a04d3377f8233c7087f6 (diff) | |
download | bcm5719-llvm-c6921379f55ee566fb62ba5aa47b217cf7c5d960.tar.gz bcm5719-llvm-c6921379f55ee566fb62ba5aa47b217cf7c5d960.zip |
[analyzer] exploded-graph-rewriter: Rename Environment to Expressions.
It's less confusing for newcomers.
llvm-svn: 375282
Diffstat (limited to 'clang/utils/analyzer/exploded-graph-rewriter.py')
-rwxr-xr-x | clang/utils/analyzer/exploded-graph-rewriter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/utils/analyzer/exploded-graph-rewriter.py b/clang/utils/analyzer/exploded-graph-rewriter.py index 46c0415826a..79055b433e8 100755 --- a/clang/utils/analyzer/exploded-graph-rewriter.py +++ b/clang/utils/analyzer/exploded-graph-rewriter.py @@ -792,7 +792,7 @@ class DotDumpVisitor(object): def visit_state(self, s, prev_s): self.visit_store_in_state(s, prev_s) - self.visit_environment_in_state('environment', 'Environment', + self.visit_environment_in_state('environment', 'Expressions', s, prev_s) self.visit_generic_map_in_state('constraints', 'Ranges', s, prev_s) |