summaryrefslogtreecommitdiff
path: root/test/binary/target-features-section.txt
blob: 3a39ab4825df81ffcbb1646c2b91027ab84d5890 (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
28
;;; TOOL: run-objdump-gen-wasm
;;; ARGS: -x
magic
version
section("target_features") {
  count[3]
  prefix['-']
  str("foo")
  prefix['+']
  str("bar")
  prefix['=']
  str("baz")
}
(;; STDOUT ;;;

target-features-section.wasm:	file format wasm 0x1

Section Details:

Custom:
 - name: "target_features"
  - [-] foo
  - [+] bar
  - [=] baz

Code Disassembly:

;;; STDOUT ;;)