Home | History | Annotate | Download | only in Chapter7

Lines Matching refs:NumberExprAST

116 /// NumberExprAST - Expression class for numeric literals like "1.0".
117 class NumberExprAST : public ExprAST {
120 NumberExprAST(double val) : Val(val) {}
304 ExprAST *Result = new NumberExprAST(NumVal);
625 Value *NumberExprAST::Codegen() {