blob: 6bfc3c3d0537e8a925dd96f01ab0429d65a42486 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
;;; TOOL: run-gen-wasm-bad
;;; ARGS1: --enable-multi-memory
;;; ARGS2: --enable-multi-memory
magic
version
section(TYPE) { count[1] function params[0] results[0] }
section(FUNCTION) { count[1] type[0] }
section(MEMORY) { count[1] flags[0] min[1] }
section(CODE) {
count[1]
func {
locals[0]
i32.const leb_u32(0)
i32.load align[63] offset[0]
drop
}
}
(;; STDERR ;;;
0000020: error: invalid load alignment: 63
0000020: error: invalid load alignment: 63
;;; STDERR ;;)
|