diff options
Diffstat (limited to 'test/signext.wast.fromBinary')
-rw-r--r-- | test/signext.wast.fromBinary | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/test/signext.wast.fromBinary b/test/signext.wast.fromBinary deleted file mode 100644 index 55b8b92eb..000000000 --- a/test/signext.wast.fromBinary +++ /dev/null @@ -1,33 +0,0 @@ -(module - (type $0 (func)) - (func $signext (type $0) - (local $0 i32) - (local $1 i64) - (drop - (i32.extend8_s - (local.get $0) - ) - ) - (drop - (i32.extend16_s - (local.get $0) - ) - ) - (drop - (i64.extend8_s - (local.get $1) - ) - ) - (drop - (i64.extend16_s - (local.get $1) - ) - ) - (drop - (i64.extend32_s - (local.get $1) - ) - ) - ) -) - |