forked from OSchip/llvm-project
parent
1f95ee3016
commit
be83a3aeca
|
@ -841,6 +841,8 @@ public:
|
||||||
return Ex->getType();
|
return Ex->getType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void dumpToStream(llvm::raw_ostream& os) const;
|
||||||
|
|
||||||
void Profile(llvm::FoldingSetNodeID &ID) const;
|
void Profile(llvm::FoldingSetNodeID &ID) const;
|
||||||
|
|
||||||
static bool classof(const MemRegion* R) {
|
static bool classof(const MemRegion* R) {
|
||||||
|
|
|
@ -407,6 +407,10 @@ void CompoundLiteralRegion::dumpToStream(llvm::raw_ostream& os) const {
|
||||||
os << "{ " << (void*) CL << " }";
|
os << "{ " << (void*) CL << " }";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CXXObjectRegion::dumpToStream(llvm::raw_ostream &os) const {
|
||||||
|
os << "temp_object";
|
||||||
|
}
|
||||||
|
|
||||||
void CXXThisRegion::dumpToStream(llvm::raw_ostream &os) const {
|
void CXXThisRegion::dumpToStream(llvm::raw_ostream &os) const {
|
||||||
os << "this";
|
os << "this";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue