File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,15 +51,23 @@ void VarInfo::print()
5151
5252 std::string status;
5353 switch (it->second .status ) {
54- case DEALLOC: status = " dealloc" ; break ;
55- case ALLOC: status = " alloc" ; break ;
56- case NOALLOC: status = " noalloc" ; break ;
57- default : status = " ?" ; break ;
54+ case DEALLOC:
55+ status = " dealloc" ;
56+ break ;
57+ case ALLOC:
58+ status = " alloc" ;
59+ break ;
60+ case NOALLOC:
61+ status = " noalloc" ;
62+ break ;
63+ default :
64+ status = " ?" ;
65+ break ;
5866 };
5967
6068 std::cout << " status=" << status << " "
6169 << " alloctype='" << it->second .type << " ' "
62- << " possibleUsage='" << strusage << " ' "
70+ << " possibleUsage='" << strusage << " ' "
6371 << " conditionalAlloc=" << (conditionalAlloc.find (it->first ) != conditionalAlloc.end () ? " yes" : " no" ) << " "
6472 << " referenced=" << (referenced.find (it->first ) != referenced.end () ? " yes" : " no" ) << " "
6573 << std::endl;
You can’t perform that action at this time.
0 commit comments