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

/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp150 /// InsertBinop - Insert the specified binary operator, doing a small amount
152 Value *SCEVExpander::InsertBinop(Instruction::BinaryOps Opcode, function in class:SCEVExpander
757 Sum = InsertBinop(Instruction::Sub, Sum, W);
765 Sum = InsertBinop(Instruction::Add, Sum, W);
799 Prod = InsertBinop(Instruction::Sub, Constant::getNullValue(Ty), Prod);
807 Prod = InsertBinop(Instruction::Mul, Prod, W);
822 return InsertBinop(Instruction::LShr, LHS,
827 return InsertBinop(Instruction::UDiv, LHS, RHS);

Completed in 1221 milliseconds