-
Notifications
You must be signed in to change notification settings - Fork 863
Expand file tree
/
Copy pathcomplexTextNames.wast
More file actions
39 lines (31 loc) · 1.32 KB
/
complexTextNames.wast
File metadata and controls
39 lines (31 loc) · 1.32 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
;; 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
;; CHECK-TEXT: (type $0 (func))
;; CHECK-TEXT: (func $foo\20\28.bar\29 (type $0)
;; CHECK-TEXT-NEXT: )
;; CHECK-BIN: (type $0 (func))
;; CHECK-BIN: (func $foo\20\28.bar\29 (type $0)
;; CHECK-BIN-NEXT: )
(func $foo\20\28.bar\29)
;; CHECK-TEXT: (func $"zoo (.bar)" (type $0)
;; CHECK-TEXT-NEXT: (call $foo\20\28.bar\29)
;; CHECK-TEXT-NEXT: )
(func $"zoo (.bar)" (call $foo\20\28.bar\29))
)
;; CHECK-BIN: (func $zoo\20\28.bar\29 (type $0)
;; CHECK-BIN-NEXT: (call $foo\20\28.bar\29)
;; CHECK-BIN-NEXT: )
;; CHECK-BIN-NODEBUG: (type $0 (func))
;; CHECK-BIN-NODEBUG: (func $0 (type $0)
;; CHECK-BIN-NODEBUG-NEXT: )
;; CHECK-BIN-NODEBUG: (func $1 (type $0)
;; CHECK-BIN-NODEBUG-NEXT: (call $0)
;; CHECK-BIN-NODEBUG-NEXT: )