Home | History | Annotate | Download | only in Chapter8

Lines Matching refs:IfExprAST

197 /// IfExprAST - Expression class for if/then/else.
198 class IfExprAST : public ExprAST {
202 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
397 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
818 Value *IfExprAST::codegen() {