Searched defs:UnaryExprAST (Results 1 - 2 of 2) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp127 /// UnaryExprAST - Expression class for a unary operator.
128 class UnaryExprAST : public ExprAST { class in inherits:ExprAST
132 UnaryExprAST(char opcode, ExprAST *operand) function in class:UnaryExprAST
398 return new UnaryExprAST(Opc, Operand);
558 Value *UnaryExprAST::Codegen() {
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp132 /// UnaryExprAST - Expression class for a unary operator.
133 class UnaryExprAST : public ExprAST { class in inherits:ExprAST
137 UnaryExprAST(char opcode, ExprAST *operand) function in class:UnaryExprAST
463 return new UnaryExprAST(Opc, Operand);
636 Value *UnaryExprAST::Codegen() {

Completed in 36 milliseconds