summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorArtem Dergachev <artem.dergachev@gmail.com>2019-10-18 20:15:39 +0000
committerArtem Dergachev <artem.dergachev@gmail.com>2019-10-18 20:15:39 +0000
commit15e9d0493a9f62d0a6b68178627dda057d14bbd1 (patch)
treee165b2ed2a1d00fad157dfae4557a8fef0cb1b87 /lib
parentd1127baaf9c936305883eac6e16fee7de406c627 (diff)
downloadclang-15e9d0493a9f62d0a6b68178627dda057d14bbd1.tar.gz
[analyzer] Fix FieldRegion dumps.
The '->' thing has always been confusing; the actual operation '->' translates to a pointer dereference together with adding a FieldRegion, but FieldRegion on its own doesn't imply an additional pointer dereference. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@375281 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/StaticAnalyzer/Core/MemRegion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/MemRegion.cpp b/lib/StaticAnalyzer/Core/MemRegion.cpp
index c7b280adcd..a10d7e69ad 100644
--- a/lib/StaticAnalyzer/Core/MemRegion.cpp
+++ b/lib/StaticAnalyzer/Core/MemRegion.cpp
@@ -506,7 +506,7 @@ void ElementRegion::dumpToStream(raw_ostream &os) const {
}
void FieldRegion::dumpToStream(raw_ostream &os) const {
- os << superRegion << "->" << *getDecl();
+ os << superRegion << "." << *getDecl();
}
void ObjCIvarRegion::dumpToStream(raw_ostream &os) const {