Home | History | Annotate | Download | only in Chapter9

Lines Matching refs:IfExprAST

293 /// IfExprAST - Expression class for if/then/else.
294 class IfExprAST : public ExprAST {
298 IfExprAST(SourceLocation Loc, std::unique_ptr<ExprAST> Cond,
529 return llvm::make_unique<IfExprAST>(IfLoc, std::move(Cond), std::move(Then),
1000 Value *IfExprAST::codegen() {