oom.wast 567 B

123456789
  1. ;;-------------------------------------------------------------------------------------------------------
  2. ;; Copyright (C) Microsoft. All rights reserved.
  3. ;; Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. ;;-------------------------------------------------------------------------------------------------------
  5. (module
  6. (import "dummy" "memory" (memory 0 16384))
  7. (func (export "grow") (param $sz i32) (result i32) (grow_memory (get_local $sz)))
  8. (func (export "size") (result i32) (current_memory))
  9. )