File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
wasm/src/org.graalvm.wasm.jdk25/src/org/graalvm/wasm/api Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ private I16X8Shape() {
135
135
136
136
@ Override
137
137
public ShortVector reinterpret (ByteVector bytes ) {
138
- return castShort128 (bytes .reinterpretAsShorts ());
138
+ return castShort128 (castByte128 ( bytes ) .reinterpretAsShorts ());
139
139
}
140
140
141
141
@ Override
@@ -167,7 +167,7 @@ private I32X4Shape() {
167
167
168
168
@ Override
169
169
public IntVector reinterpret (ByteVector bytes ) {
170
- return castInt128 (bytes .reinterpretAsInts ());
170
+ return castInt128 (castByte128 ( bytes ) .reinterpretAsInts ());
171
171
}
172
172
173
173
@ Override
@@ -199,7 +199,7 @@ private I64X2Shape() {
199
199
200
200
@ Override
201
201
public LongVector reinterpret (ByteVector bytes ) {
202
- return castLong128 (bytes .reinterpretAsLongs ());
202
+ return castLong128 (castByte128 ( bytes ) .reinterpretAsLongs ());
203
203
}
204
204
205
205
@ Override
@@ -227,7 +227,7 @@ private F32X4Shape() {
227
227
228
228
@ Override
229
229
public FloatVector reinterpret (ByteVector bytes ) {
230
- return castFloat128 (bytes .reinterpretAsFloats ());
230
+ return castFloat128 (castByte128 ( bytes ) .reinterpretAsFloats ());
231
231
}
232
232
233
233
@ Override
@@ -268,7 +268,7 @@ private F64X2Shape() {
268
268
269
269
@ Override
270
270
public DoubleVector reinterpret (ByteVector bytes ) {
271
- return castDouble128 (bytes .reinterpretAsDoubles ());
271
+ return castDouble128 (castByte128 ( bytes ) .reinterpretAsDoubles ());
272
272
}
273
273
274
274
@ Override
You can’t perform that action at this time.
0 commit comments