diff options
Diffstat (limited to 'test/passes/fuzz-exec_enable-sign-ext.wast')
-rw-r--r-- | test/passes/fuzz-exec_enable-sign-ext.wast | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/test/passes/fuzz-exec_enable-sign-ext.wast b/test/passes/fuzz-exec_enable-sign-ext.wast deleted file mode 100644 index 08042d2b9..000000000 --- a/test/passes/fuzz-exec_enable-sign-ext.wast +++ /dev/null @@ -1,33 +0,0 @@ -(module - (export "a" (func $a)) - (export "b" (func $b)) - (export "c" (func $c)) - (export "d" (func $d)) - (export "e" (func $e)) - (func $a (result i32) - (i32.extend8_s - (i32.const 187) - ) - ) - (func $b (result i32) - (i32.extend16_s - (i32.const 33768) - ) - ) - (func $c (result i64) - (i64.extend8_s - (i64.const 187) - ) - ) - (func $d (result i64) - (i64.extend16_s - (i64.const 33768) - ) - ) - (func $e (result i64) - (i64.extend32_s - (i64.const 2148318184) - ) - ) -) - |