| 2579 | } |
| 2580 | |
| 2581 | int AddInstrLoad(int variableID, MemoryAccess ma) |
| 2582 | { |
| 2583 | ++CurrentID; |
| 2584 | RefPtr<ILType> Type = IDInfos[variableID]().GetILType(); |
| 2585 | int TypeID = IDInfos[variableID]().GetBaseTypeID(); |
| 2586 | CodeGen.OpLoad(CurrentID, TypeID, variableID, ma); |
| 2587 | IDInfos[CurrentID] |
| 2588 | = IDInfo::CreateIDInfoForValue( |
| 2589 | CurrentID, |
| 2590 | Type, |
| 2591 | 0, |
| 2592 | TypeID); |
| 2593 | return CurrentID; |
| 2594 | } |
| 2595 | |
| 2596 | int AddInstrLoad(ILOperand *op, ILOperand *targetOp, MemoryAccess ma) |
| 2597 | { |
no test coverage detected