Home | History | Annotate | Download | only in Chapter9

Lines Matching defs:Opcode

243   char Opcode;
247 UnaryExprAST(char Opcode, std::unique_ptr<ExprAST> Operand)
248 : Opcode(Opcode), Operand(std::move(Operand)) {}
251 ExprAST::dump(out << "unary" << Opcode, ind);
915 Function *F = getFunction(std::string("unary") + Opcode);