Searched refs:NewSh (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp1307 Value *NewSh = Builder.CreateAShr(X, ConstantInt::get(SrcTy, ShAmt)); local
1308 return new SExtInst(NewSh, Ty);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3005 auto NewSh = N1->getOpcode() == ISD::SRA ? ISD::SRL : ISD::SRA; local
3006 if (!LegalOperations || TLI.isOperationLegal(NewSh, VT))
3007 return DAG.getNode(NewSh, DL, VT, N1.getOperand(0), N1.getOperand(1));

Completed in 234 milliseconds