| 2825 | } |
| 2826 | |
| 2827 | int AddInstrFunctionCall(ILOperand *op, int typeID, int funcID, List<int> &args) |
| 2828 | { |
| 2829 | ++CurrentID; |
| 2830 | CodeGen.OpFunctionCall(CurrentID, typeID, funcID, args); |
| 2831 | IDInfos[CurrentID] = IDInfo::CreateIDInfoForValue( |
| 2832 | CurrentID, |
| 2833 | IDInfos[typeID]().GetILType(), |
| 2834 | op, |
| 2835 | typeID |
| 2836 | ); |
| 2837 | UpdateValue(op, CurrentID); |
| 2838 | return CurrentID; |
| 2839 | } |
| 2840 | |
| 2841 | int AddInstrFnegate(ILOperand *op, int typeID, int valueID) |
| 2842 | { |
no test coverage detected