forked from OSchip/llvm-project
Replace stmt visitors with the fall back method.
llvm-svn: 76294
This commit is contained in:
parent
ff9bf97ceb
commit
4b9f2d082a
|
@ -33,27 +33,7 @@ public:
|
|||
CGBuilder(CallGraph &g, FunctionDecl *fd, Entity *E, CallGraphNode *N)
|
||||
: G(g), FD(fd), CallerEnt(E), CallerNode(N) {}
|
||||
|
||||
void VisitCompoundStmt(CompoundStmt *S) { VisitChildren(S); }
|
||||
|
||||
void VisitCastStmt(CaseStmt *S) { VisitChildren(S); }
|
||||
|
||||
void VisitDefaultStmt(DefaultStmt *S) { VisitChildren(S); }
|
||||
|
||||
void VisitLabelStmt(LabelStmt *S) { VisitChildren(S); }
|
||||
|
||||
void VisitIfStmt(IfStmt *S) { VisitChildren(S); }
|
||||
|
||||
void VisitSwitchStmt(SwitchStmt *S) { VisitChildren(S); }
|
||||
|
||||
void VisitDoStmt(DoStmt *S) { VisitChildren(S); }
|
||||
|
||||
void VisitForStmt(ForStmt *S) { VisitChildren(S); }
|
||||
|
||||
void VisitIndirectGotoStmt(IndirectGotoStmt *S) { VisitChildren(S); }
|
||||
|
||||
void VisitReturnStmt(ReturnStmt *S) { VisitChildren(S); }
|
||||
|
||||
void VisitDeclStmt(DeclStmt *S) { VisitChildren(S); }
|
||||
void VisitStmt(Stmt *S) { VisitChildren(S); }
|
||||
|
||||
void VisitCallExpr(CallExpr *CE);
|
||||
|
||||
|
|
Loading…
Reference in New Issue