| 2867 | } |
| 2868 | |
| 2869 | int AddInstrNot(ILOperand *op, int typeID, int valueID) |
| 2870 | { |
| 2871 | ++CurrentID; |
| 2872 | CodeGen.OpNot(CurrentID, typeID, valueID); |
| 2873 | IDInfos[CurrentID] = IDInfo::CreateIDInfoForValue( |
| 2874 | CurrentID, |
| 2875 | IDInfos[typeID]().GetILType(), |
| 2876 | op, |
| 2877 | typeID |
| 2878 | ); |
| 2879 | UpdateValue(op, CurrentID); |
| 2880 | return CurrentID; |
| 2881 | } |
| 2882 | |
| 2883 | int AddInstrLogicalNot(ILOperand *op, int typeID, int valueID) |
| 2884 | { |
no test coverage detected