Move test data used by cranelift-wasm's tests in the crate directory, to make the tests autonomous. Fixes #2910
10 lines
235 B
Plaintext
10 lines
235 B
Plaintext
(module
|
|
(func (export "multiLoop") (param i64 i64 i64) (result i64 i64)
|
|
(local.get 2)
|
|
(local.get 1)
|
|
(local.get 0)
|
|
;; More params than results.
|
|
(loop (param i64 i64 i64) (result i64 i64)
|
|
drop
|
|
return)))
|