Browse Source

[PATCH 068/188] explicit normalization

From a4aa258e7ff53b4f540dddd3da3fca986d5721f6 Mon Sep 17 00:00:00 2001
From: Dmitry Boyarintsev <[email protected]>
Date: Wed, 4 Mar 2020 09:47:10 -0500

git-svn-id: branches/wasm@46064 -
nickysn 5 years ago
parent
commit
721b40bf04
1 changed files with 2 additions and 1 deletions
  1. 2 1
      utils/wasmbin/wattest.lpr

+ 2 - 1
utils/wasmbin/wattest.lpr

@@ -25,7 +25,8 @@ var
 begin
   f := TFileStream.Create(fndst, fmCreate);
   try
-    WriteModule(m, f);
+    Normalize(m);
+    WriteModule(m, f, true, true);
   finally
     f.Free;
   end;