diff options
Diffstat (limited to 'test/passes/flatten_i64-to-i32-lowering.wast')
-rw-r--r-- | test/passes/flatten_i64-to-i32-lowering.wast | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/passes/flatten_i64-to-i32-lowering.wast b/test/passes/flatten_i64-to-i32-lowering.wast new file mode 100644 index 000000000..179cac467 --- /dev/null +++ b/test/passes/flatten_i64-to-i32-lowering.wast @@ -0,0 +1,7 @@ +(module + (import "env" "func" (func $import (result i64))) + (func $defined (result i64) + (i64.add (i64.const 1) (i64.const 2)) + ) +) + |