Home | History | Annotate | Download | only in Chapter2

Lines Matching refs:CallExprAST

188 /// CallExprAST - Expression class for function calls.
189 class CallExprAST : public ExprAST {
194 CallExprAST(const std::string &Callee,
371 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
802 Value *CallExprAST::codegen() {