diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-11-25 02:07:24 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-11-25 02:07:24 +0000 |
commit | e1aeb13251a4858724d2b7ad1925d25076f23d08 (patch) | |
tree | a2f1c80fa40ae52d18322848536ad704d34ddeab /lib/Checker/MemRegion.cpp | |
parent | 8f2c6899dd14023555808dbdcbe7e371c3fb2cc2 (diff) |
Add dump method.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120141 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/MemRegion.cpp')
-rw-r--r-- | lib/Checker/MemRegion.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Checker/MemRegion.cpp b/lib/Checker/MemRegion.cpp index ddcb7d2687..4414c1a57a 100644 --- a/lib/Checker/MemRegion.cpp +++ b/lib/Checker/MemRegion.cpp @@ -407,6 +407,10 @@ void CompoundLiteralRegion::dumpToStream(llvm::raw_ostream& os) const { os << "{ " << (void*) CL << " }"; } +void CXXObjectRegion::dumpToStream(llvm::raw_ostream &os) const { + os << "temp_object"; +} + void CXXThisRegion::dumpToStream(llvm::raw_ostream &os) const { os << "this"; } |