зеркало из https://github.com/microsoft/clang-1.git
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:
Родитель
1c29bba6da
Коммит
aeddbf689e
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче