summaryrefslogtreecommitdiff
path: root/test/unit.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit.wast')
-rw-r--r--test/unit.wast27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/unit.wast b/test/unit.wast
index 914cbf8bd..5fecdcad3 100644
--- a/test/unit.wast
+++ b/test/unit.wast
@@ -17,4 +17,31 @@
)
)
)
+ (func $importedDoubles
+ (local $temp f64)
+ (set_local $temp
+ (f64.add
+ (f64.add
+ (f64.add
+ (f64.load align=8
+ (i32.const 8)
+ )
+ (f64.load align=8
+ (i32.const 16)
+ )
+ )
+ (f64.neg
+ (f64.load align=8
+ (i32.const 16)
+ )
+ )
+ )
+ (f64.neg
+ (f64.load align=8
+ (i32.const 8)
+ )
+ )
+ )
+ )
+ )
)