Преглед на файлове

+ introduced TWasmBasicTypeList

Nikolay Nikolov преди 1 година
родител
ревизия
d575aa5240
променени са 1 файла, в които са добавени 3 реда и са изтрити 2 реда
  1. 3 2
      compiler/wasm32/aasmcpu.pas

+ 3 - 2
compiler/wasm32/aasmcpu.pas

@@ -41,6 +41,7 @@ uses
       O_MOV_DEST = 0;
       O_MOV_DEST = 0;
 
 
     type
     type
+      TWasmBasicTypeList = array of TWasmBasicType;
 
 
       { TWasmValueStack }
       { TWasmValueStack }
 
 
@@ -61,8 +62,8 @@ uses
 
 
       TWasmControlFrame = record
       TWasmControlFrame = record
         opcode: tasmop;
         opcode: tasmop;
-        start_types: array of TWasmBasicType;
-        end_types: array of TWasmBasicType;
+        start_types: TWasmBasicTypeList;
+        end_types: TWasmBasicTypeList;
         height: Integer;
         height: Integer;
         unreachable: Boolean;
         unreachable: Boolean;
       end;
       end;