Home | History | Annotate | Download | only in cached

Lines Matching refs:CallExprAST

170 /// CallExprAST - Expression class for function calls.
171 class CallExprAST : public ExprAST {
175 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
315 return new CallExprAST(IdName, Args);
715 Value *CallExprAST::Codegen() {