blob: 0380b1056358137ddd5730f989e2450a47a97abf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
;; RUN: wasm-opt %s -all -o %t.text.wast -g -S
;; RUN: wasm-as %s -all -g -o %t.wasm
;; RUN: wasm-dis %t.wasm -all -o %t.bin.wast
;; RUN: wasm-as %s -all -o %t.nodebug.wasm
;; RUN: wasm-dis %t.nodebug.wasm -all -o %t.bin.nodebug.wast
;; RUN: cat %t.text.wast | filecheck %s --check-prefix=CHECK-TEXT
;; RUN: cat %t.bin.wast | filecheck %s --check-prefix=CHECK-BIN
;; RUN: cat %t.bin.nodebug.wast | filecheck %s --check-prefix=CHECK-BIN-NODEBUG
(module $foo
;; Check that passive data segment names are output even when there
;; is no declared memory
;; CHECK-TEXT: (data $passive_data "b")
;; CHECK-BIN: (data $passive_data "b")
(data $passive_data "b")
(data "c")
)
;; CHECK-TEXT: (data $0 "c")
;; CHECK-BIN: (data $1 "c")
;; CHECK-BIN-NODEBUG: (data $0 "b")
;; CHECK-BIN-NODEBUG: (data $1 "c")
|