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

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

Completed in 222 milliseconds