File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
wasm/src/org.graalvm.wasm/src/org/graalvm/wasm Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public abstract class RuntimeState {
79
79
* module-specific, and the globals can be imported across modules. Thus, the address-space of
80
80
* the globals is not the same as the module-specific index-space.
81
81
*/
82
- @ CompilationFinal (dimensions = 1 ) private int [] globalAddresses ;
82
+ @ CompilationFinal (dimensions = 0 ) private int [] globalAddresses ;
83
83
84
84
/**
85
85
* This array is monotonically populated from the left. An index i denotes the i-th table in
@@ -90,9 +90,9 @@ public abstract class RuntimeState {
90
90
* module-specific, and the tables can be imported across modules. Thus, the address-space of
91
91
* the tables is not the same as the module-specific index-space.
92
92
*/
93
- @ CompilationFinal (dimensions = 1 ) private int [] tableAddresses ;
93
+ @ CompilationFinal (dimensions = 0 ) private int [] tableAddresses ;
94
94
95
- @ CompilationFinal (dimensions = 1 ) private WasmMemory [] memories ;
95
+ @ CompilationFinal (dimensions = 0 ) private WasmMemory [] memories ;
96
96
97
97
/**
98
98
* The passive elem instances that can be used to lazily initialize tables. They can potentially
You can’t perform that action at this time.
0 commit comments