diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2021-07-09 11:02:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-09 11:02:45 -0700 |
commit | f77e8ddc8c0da06cc0cd2c063237660e8ec4020b (patch) | |
tree | 9a50adc8cc905a2193d9f9fd04447110870b082a /test/lit/memory64-limits.wast | |
parent | a533488572de0c8916add42b01530f0244ca4623 (diff) | |
download | binaryen-f77e8ddc8c0da06cc0cd2c063237660e8ec4020b.tar.gz binaryen-f77e8ddc8c0da06cc0cd2c063237660e8ec4020b.tar.bz2 binaryen-f77e8ddc8c0da06cc0cd2c063237660e8ec4020b.zip |
[Memory64] further memory limit fixes (#3865)
That were somehow missed.. triggered by emscripten tests
Diffstat (limited to 'test/lit/memory64-limits.wast')
-rw-r--r-- | test/lit/memory64-limits.wast | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/lit/memory64-limits.wast b/test/lit/memory64-limits.wast new file mode 100644 index 000000000..29e51d29e --- /dev/null +++ b/test/lit/memory64-limits.wast @@ -0,0 +1,9 @@ +;; RUN: wasm-opt %s -all --roundtrip -S -o - | filecheck %s + +(module + (memory $0 i64 1 4294967296) +) + +;; CHECK: (module +;; CHECK-NEXT: (memory $0 i64 1 4294967296) +;; CHECK-NEXT: ) |