Home | History | Annotate | Download | only in Utils

Lines Matching refs:OpC

1197     if (SIToFPInst *OpC = dyn_cast<SIToFPInst>(Op)) {
1198 if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() <= 32)
1199 LdExpArg = B.CreateSExt(OpC->getOperand(0), B.getInt32Ty());
1200 } else if (UIToFPInst *OpC = dyn_cast<UIToFPInst>(Op)) {
1201 if (OpC->getOperand(0)->getType()->getPrimitiveSizeInBits() < 32)
1202 LdExpArg = B.CreateZExt(OpC->getOperand(0), B.getInt32Ty());