2
0
Эх сурвалжийг харах

[PATCH 091/188] hex scanning test

From 81fecdf150cccfe288a282badfeb8e235e0cf0d0 Mon Sep 17 00:00:00 2001
From: Dmitry Boyarintsev <[email protected]>
Date: Tue, 10 Mar 2020 09:06:09 -0400

git-svn-id: branches/wasm@46087 -
nickysn 5 жил өмнө
parent
commit
bce20892c9

+ 1 - 0
.gitattributes

@@ -18990,6 +18990,7 @@ utils/wasmbin/testscan/inst_const_i32.wat svneol=native#text/plain
 utils/wasmbin/testscan/inst_const_i32_neg.wat svneol=native#text/plain
 utils/wasmbin/testscan/inst_const_i32_neg.wat svneol=native#text/plain
 utils/wasmbin/testscan/inst_const_i64.wat svneol=native#text/plain
 utils/wasmbin/testscan/inst_const_i64.wat svneol=native#text/plain
 utils/wasmbin/testscan/inst_const_i64_neg.wat svneol=native#text/plain
 utils/wasmbin/testscan/inst_const_i64_neg.wat svneol=native#text/plain
+utils/wasmbin/testscan/inst_const_i64_neg_hex.wat svneol=native#text/plain
 utils/wasmbin/testscan/inst_const_i64_pos.wat svneol=native#text/plain
 utils/wasmbin/testscan/inst_const_i64_pos.wat svneol=native#text/plain
 utils/wasmbin/wasmbin.pas svneol=native#text/plain
 utils/wasmbin/wasmbin.pas svneol=native#text/plain
 utils/wasmbin/wasmbincode.pas svneol=native#text/plain
 utils/wasmbin/wasmbincode.pas svneol=native#text/plain

+ 5 - 0
utils/wasmbin/testscan/inst_const_i64_neg_hex.wat

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