Browse Source

[PATCH 089/188] tests: parsing 64-bit integer constant

From ecd46fee41d15b8f05ee6268711bfaed880d8399 Mon Sep 17 00:00:00 2001
From: Dmitry Boyarintsev <[email protected]>
Date: Tue, 10 Mar 2020 08:45:44 -0400

git-svn-id: branches/wasm@46085 -
nickysn 5 years ago
parent
commit
c8d83674a9

+ 1 - 1
utils/wasmbin/testscan/inst_const_i64_neg.wat

@@ -1,5 +1,5 @@
 (module
 (module
   (func $add (result i64)
   (func $add (result i64)
-    i64.const -13
+    i64.const -9223372036854775808
   )
   )
 )
 )

+ 1 - 1
utils/wasmbin/testscan/inst_const_i64_pos.wat

@@ -1,5 +1,5 @@
 (module
 (module
   (func $add (result i64)
   (func $add (result i64)
-    i64.const 9223372036854775807
+    i64.const +9223372036854775807
   )
   )
 )
 )