зеркало из https://github.com/microsoft/clang-1.git
When dumping implicit cast exprs, print out whether the cast is an lvalue cast or not.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@88821 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
9a8a83b8fe
Коммит
0e489ea67d
|
@ -115,6 +115,7 @@ namespace {
|
|||
// Exprs
|
||||
void VisitExpr(Expr *Node);
|
||||
void VisitCastExpr(CastExpr *Node);
|
||||
void VisitImplicitCastExpr(ImplicitCastExpr *Node);
|
||||
void VisitDeclRefExpr(DeclRefExpr *Node);
|
||||
void VisitPredefinedExpr(PredefinedExpr *Node);
|
||||
void VisitCharacterLiteral(CharacterLiteral *Node);
|
||||
|
@ -301,6 +302,12 @@ void StmtDumper::VisitCastExpr(CastExpr *Node) {
|
|||
fprintf(F, " <%s>", Node->getCastKindName());
|
||||
}
|
||||
|
||||
void StmtDumper::VisitImplicitCastExpr(ImplicitCastExpr *Node) {
|
||||
VisitCastExpr(Node);
|
||||
if (Node->isLvalueCast())
|
||||
fprintf(F, " lvalue");
|
||||
}
|
||||
|
||||
void StmtDumper::VisitDeclRefExpr(DeclRefExpr *Node) {
|
||||
DumpExpr(Node);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче