forked from OSchip/llvm-project
parent
7421c0161a
commit
99de8ae19c
|
@ -157,6 +157,16 @@ void AllocaRegion::print(llvm::raw_ostream& os) const {
|
|||
os << "alloca{" << (void*) Ex << ',' << Cnt << '}';
|
||||
}
|
||||
|
||||
void CodeTextRegion::print(llvm::raw_ostream& os) const {
|
||||
os << "code{";
|
||||
if (isDeclared())
|
||||
os << getDecl()->getDeclName();
|
||||
else
|
||||
os << '$' << getSymbol();
|
||||
|
||||
os << '}';
|
||||
}
|
||||
|
||||
void CompoundLiteralRegion::print(llvm::raw_ostream& os) const {
|
||||
// FIXME: More elaborate pretty-printing.
|
||||
os << "{ " << (void*) CL << " }";
|
||||
|
|
Loading…
Reference in New Issue