Home | History | Annotate | Download | only in Chapter7

Lines Matching refs:Operand

155   std::unique_ptr<ExprAST> Operand;
158 UnaryExprAST(char Opcode, std::unique_ptr<ExprAST> Operand)
159 : Opcode(Opcode), Operand(std::move(Operand)) {}
522 if (auto Operand = ParseUnary())
523 return llvm::make_unique<UnaryExprAST>(Opc, std::move(Operand));
726 Value *OperandV = Operand->codegen();