Home | History | Annotate | Download | only in Chapter7

Lines Matching refs:UnaryExprAST

132 /// UnaryExprAST - Expression class for a unary operator.
133 class UnaryExprAST : public ExprAST {
137 UnaryExprAST(char opcode, ExprAST *operand)
463 return new UnaryExprAST(Opc, Operand);
636 Value *UnaryExprAST::Codegen() {