{
    "Function": "_roundUpFreeMemoryPointer",
    "File": "contracts/lib/solady/test/utils/TestPlus.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "mload(uint256)",
        "mstore(uint256,uint256)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _roundUpFreeMemoryPointer() internal pure {\n        // To prevent a solidity 0.8.13 bug.\n        // See: https://blog.soliditylang.org/2022/06/15/inline-assembly-memory-side-effects-bug\n        // Basically, we need to access a solidity variable from the assembly to\n        // tell the compiler that this assembly block is not in isolation.\n        uint256 twoWords = 0x40;\n        /// @solidity memory-safe-assembly\n        assembly {\n            mstore(twoWords, and(add(mload(twoWords), 0x1f), not(0x1f)))\n        }\n    }"
}