| 2812 | } |
| 2813 | |
| 2814 | int AddInstrBitcast(int destTypeID, int operandID) |
| 2815 | { |
| 2816 | ++CurrentID; |
| 2817 | CodeGen.OpBitCast(CurrentID, destTypeID, operandID); |
| 2818 | IDInfos[CurrentID] = IDInfo::CreateIDInfoForValue( |
| 2819 | CurrentID, |
| 2820 | IDInfos[destTypeID]().GetILType(), |
| 2821 | 0, |
| 2822 | destTypeID |
| 2823 | ); |
| 2824 | return CurrentID; |
| 2825 | } |
| 2826 | |
| 2827 | int AddInstrFunctionCall(ILOperand *op, int typeID, int funcID, List<int> &args) |
| 2828 | { |
no test coverage detected