Browse Source

[PATCH 163/188] fix instruction code declaration

From 12f7a76ddf368819d111d8d6333438dabb8dfd1c Mon Sep 17 00:00:00 2001
From: Dmitry Boyarintsev <[email protected]>
Date: Fri, 27 Mar 2020 10:26:00 -0400

git-svn-id: branches/wasm@46159 -
nickysn 5 years ago
parent
commit
c7832853af
1 changed files with 5 additions and 5 deletions
  1. 5 5
      utils/wasmbin/wasmbincode.pas

+ 5 - 5
utils/wasmbin/wasmbincode.pas

@@ -124,11 +124,11 @@ const
   INST_f32_max        = $97;
   INST_f32_max        = $97;
   INST_f32_copysign   = $98;
   INST_f32_copysign   = $98;
   INST_f64_abs        = $99;
   INST_f64_abs        = $99;
-  INST_f64_neg        = $99;
-  INST_f64_ceil       = $99;
-  INST_f64_floor      = $9a;
-  INST_f64_trunc      = $9b;
-  INST_f64_nearest    = $9c;
+  INST_f64_neg        = $9a;
+  INST_f64_ceil       = $9b;
+  INST_f64_floor      = $9c;
+  INST_f64_trunc      = $9d;
+  INST_f64_nearest    = $9e;
   INST_f64_sqrt       = $9f;
   INST_f64_sqrt       = $9f;
   INST_f64_add        = $a0;
   INST_f64_add        = $a0;
   INST_f64_sub        = $a1;
   INST_f64_sub        = $a1;