Home | History | Annotate | Download | only in initial

Lines Matching refs:UnaryExprAST

134 /// UnaryExprAST - Expression class for a unary operator.
135 class UnaryExprAST : public ExprAST {
139 UnaryExprAST(char opcode, ExprAST *operand)
465 return new UnaryExprAST(Opc, Operand);
886 Value *UnaryExprAST::Codegen() {