| 2786 | } |
| 2787 | |
| 2788 | int AddInstrConvertSToU(int destTypeID, int operandID) |
| 2789 | { |
| 2790 | ++CurrentID; |
| 2791 | CodeGen.OpBitCast(CurrentID, destTypeID, operandID); |
| 2792 | IDInfos[CurrentID] = IDInfo::CreateIDInfoForValue( |
| 2793 | CurrentID, |
| 2794 | IDInfos[destTypeID]().GetILType(), |
| 2795 | 0, |
| 2796 | destTypeID |
| 2797 | ); |
| 2798 | return CurrentID; |
| 2799 | } |
| 2800 | |
| 2801 | int AddInstrConvertUToS(int destTypeID, int operandID) |
| 2802 | { |