Home | History | Annotate | Download | only in cached

Lines Matching refs:NumberExprAST

133 /// NumberExprAST - Expression class for numeric literals like "1.0".
134 class NumberExprAST : public ExprAST {
137 NumberExprAST(double val) : Val(val) {}
320 ExprAST *Result = new NumberExprAST(NumVal);
641 Value *NumberExprAST::Codegen() {