Home | History | Annotate | Download | only in Chapter7

Lines Matching refs:NumberExprAST

115 /// NumberExprAST - Expression class for numeric literals like "1.0".
116 class NumberExprAST : public ExprAST {
119 NumberExprAST(double val) : Val(val) {}
302 ExprAST *Result = new NumberExprAST(NumVal);
623 Value *NumberExprAST::Codegen() {