Home | History | Annotate | Download | only in Chapter7

Lines Matching refs:CallExprAST

152 /// CallExprAST - Expression class for function calls.
153 class CallExprAST : public ExprAST {
157 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
297 return new CallExprAST(IdName, Args);
691 Value *CallExprAST::Codegen() {