Home | History | Annotate | Download | only in Chapter7

Lines Matching refs:UnaryExprAST

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