Home | History | Annotate | Download | only in cached

Lines Matching refs:NumberExprAST

140 /// NumberExprAST - Expression class for numeric literals like "1.0".
141 class NumberExprAST : public ExprAST {
144 NumberExprAST(double val) : Val(val) {}
327 ExprAST *Result = new NumberExprAST(NumVal);
1013 Value *NumberExprAST::Codegen() {