Added better pretty printing in CFGs for __builtin_choose_expr

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41658 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2007-08-31 22:29:13 +00:00
Родитель 1c29bba6da
Коммит aeddbf689e
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -1014,6 +1014,12 @@ public:
OS << " ? ... : ...\n";
}
void VisitChooseExpr(ChooseExpr* C) {
OS << "__builtin_choose_expr( ";
C->getCond()->printPretty(OS,Helper);
OS << " )\n";
}
void VisitIndirectGotoStmt(IndirectGotoStmt* I) {
OS << "goto *";
I->getTarget()->printPretty(OS,Helper);