diff options
Diffstat (limited to 'test/push_pop.wast.fromBinary')
-rw-r--r-- | test/push_pop.wast.fromBinary | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/test/push_pop.wast.fromBinary b/test/push_pop.wast.fromBinary deleted file mode 100644 index 489897df6..000000000 --- a/test/push_pop.wast.fromBinary +++ /dev/null @@ -1,48 +0,0 @@ -(module - (type $none_=>_none (func)) - (type $none_=>_i32 (func (result i32))) - (type $none_=>_i64 (func (result i64))) - (type $none_=>_f32 (func (result f32))) - (type $none_=>_f64 (func (result f64))) - (type $none_=>_funcref (func (result funcref))) - (type $none_=>_anyref (func (result anyref))) - (type $none_=>_exnref (func (result exnref))) - (export "ppi32" (func $0)) - (export "ppi64" (func $1)) - (export "ppf32" (func $2)) - (export "ppf64" (func $3)) - (export "ppanyref" (func $4)) - (export "ppfuncref" (func $5)) - (export "ppnullref" (func $6)) - (export "ppexnref" (func $7)) - (func $0 (result i32) - (i32.const 1) - ) - (func $1 (result i64) - (i64.const 1) - ) - (func $2 (result f32) - (f32.const 1) - ) - (func $3 (result f64) - (f64.const 1) - ) - (func $4 (result anyref) - (local $0 anyref) - (local.get $0) - ) - (func $5 (result funcref) - (local $0 funcref) - (local.get $0) - ) - (func $6 - (drop - (ref.null) - ) - ) - (func $7 (result exnref) - (local $0 exnref) - (local.get $0) - ) -) - |