summaryrefslogtreecommitdiff
path: root/test/unit.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit.wast')
-rw-r--r--test/unit.wast19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/unit.wast b/test/unit.wast
new file mode 100644
index 000000000..b5e054593
--- /dev/null
+++ b/test/unit.wast
@@ -0,0 +1,19 @@
+(module
+ (memory 16777216)
+ (export "big_negative" $big_negative)
+ (func $big_negative
+ (local $temp f64)
+ (block
+ (set_local $temp
+ (i32.const -2147483648)
+ )
+ (set_local $temp
+ (f64.const -2147483648)
+ )
+ (set_local $temp
+ (f64.const -21474836480)
+ )
+ )
+ )
+)
+