diff options
Diffstat (limited to 'test/passes/flatten_local-cse_Os.wast')
-rw-r--r-- | test/passes/flatten_local-cse_Os.wast | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/test/passes/flatten_local-cse_Os.wast b/test/passes/flatten_local-cse_Os.wast deleted file mode 100644 index 7017bcfb6..000000000 --- a/test/passes/flatten_local-cse_Os.wast +++ /dev/null @@ -1,39 +0,0 @@ -(module - ;; testcase from AssemblyScript - (func "div16_internal" (param $0 i32) (param $1 i32) (result i32) - (i32.add - (i32.xor - (i32.shr_s - (i32.shl - (local.get $0) - (i32.const 16) - ) - (i32.const 16) - ) - (i32.shr_s - (i32.shl - (local.get $1) - (i32.const 16) - ) - (i32.const 16) - ) - ) - (i32.xor - (i32.shr_s - (i32.shl - (local.get $0) - (i32.const 16) - ) - (i32.const 16) - ) - (i32.shr_s - (i32.shl - (local.get $1) - (i32.const 16) - ) - (i32.const 16) - ) - ) - ) - ) -) |