summaryrefslogtreecommitdiff
path: root/test/lit/memory64-limits.wast
diff options
context:
space:
mode:
authorWouter van Oortmerssen <aardappel@gmail.com>2021-07-09 11:02:45 -0700
committerGitHub <noreply@github.com>2021-07-09 11:02:45 -0700
commitf77e8ddc8c0da06cc0cd2c063237660e8ec4020b (patch)
tree9a50adc8cc905a2193d9f9fd04447110870b082a /test/lit/memory64-limits.wast
parenta533488572de0c8916add42b01530f0244ca4623 (diff)
downloadbinaryen-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.wast9
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: )