Home | History | Annotate | Download | only in IR

Lines Matching refs:DstBits

1567   unsigned DstBits = Ty->getScalarSizeInBits();
1569 (SrcBits == DstBits ? Instruction::BitCast :
1570 (SrcBits > DstBits ? Instruction::Trunc :
1579 unsigned DstBits = Ty->getScalarSizeInBits();
1580 if (SrcBits == DstBits)
1583 (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);