| 192 | } |
| 193 | |
| 194 | void CompilerUtils::storeInMemory(unsigned _offset) |
| 195 | { |
| 196 | unsigned numBytes = prepareMemoryStore(*TypeProvider::uint256(), true); |
| 197 | if (numBytes > 0) |
| 198 | m_context << u256(_offset) << Instruction::MSTORE; |
| 199 | } |
| 200 | |
| 201 | void CompilerUtils::storeInMemoryDynamic(Type const& _type, bool _padToWordBoundaries, bool _cleanup) |
| 202 | { |
no outgoing calls
no test coverage detected