File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Java17andUp/src_170/org/openj9/test/jep389/downcall
Java21Only/src/org/openj9/test/jep442/downcall
Java22andUp/src/org/openj9/test/jep454/downcall Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ omr_add_exports(clinkerffitests
354
354
addBoolStruct1AndNestedBoolStruct2WithXor_returnStruct2_dupStruct
355
355
addNestedBoolArrayStructsWithXor_dupStruct
356
356
addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct1_dupStruct
357
- addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct1_dupStruct
357
+ addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct2_dupStruct
358
358
addNestedBoolStructArrayStructsWithXor_dupStruct
359
359
addBoolStruct1AndNestedBoolStructArrayStruct2WithXor_returnStruct1_dupStruct
360
360
addBoolStruct1AndNestedBoolStructArrayStruct2WithXor_returnStruct2_dupStruct
Original file line number Diff line number Diff line change @@ -347,7 +347,7 @@ SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0-only WITH Classpath-ex
347
347
<export name =" addBoolStruct1AndNestedBoolStruct2WithXor_returnStruct2_dupStruct" />
348
348
<export name =" addNestedBoolArrayStructsWithXor_dupStruct" />
349
349
<export name =" addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct1_dupStruct" />
350
- <export name =" addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct1_dupStruct " />
350
+ <export name =" addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct2_dupStruct " />
351
351
<export name =" addNestedBoolStructArrayStructsWithXor_dupStruct" />
352
352
<export name =" addBoolStruct1AndNestedBoolStructArrayStruct2WithXor_returnStruct1_dupStruct" />
353
353
<export name =" addBoolStruct1AndNestedBoolStructArrayStruct2WithXor_returnStruct2_dupStruct" />
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ public void test_addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct2_du
246
246
SequenceLayout boolArray = MemoryLayout .sequenceLayout (2 , C_CHAR );
247
247
GroupLayout structLayout2 = MemoryLayout .structLayout (boolArray .withName ("array_elem1" ), C_CHAR .withName ("elem2" ));
248
248
FunctionDescriptor fd = FunctionDescriptor .of (structLayout2 , structLayout1 , structLayout2 );
249
- Addressable functionSymbol = nativeLibLookup .lookup ("addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct1_dupStruct " ).get ();
249
+ Addressable functionSymbol = nativeLibLookup .lookup ("addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct2_dupStruct " ).get ();
250
250
251
251
try (ResourceScope scope = ResourceScope .newConfinedScope ()) {
252
252
SegmentAllocator allocator = SegmentAllocator .ofScope (scope );
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ public void test_addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct2_du
224
224
SequenceLayout boolArray = MemoryLayout .sequenceLayout (2 , JAVA_BOOLEAN );
225
225
GroupLayout structLayout2 = MemoryLayout .structLayout (boolArray .withName ("array_elem1" ), JAVA_BOOLEAN .withName ("elem2" ));
226
226
FunctionDescriptor fd = FunctionDescriptor .of (structLayout2 , structLayout1 , structLayout2 );
227
- MemorySegment functionSymbol = nativeLibLookup .find ("addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct1_dupStruct " ).get ();
227
+ MemorySegment functionSymbol = nativeLibLookup .find ("addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct2_dupStruct " ).get ();
228
228
MethodHandle mh = linker .downcallHandle (functionSymbol , fd );
229
229
230
230
try (Arena arena = Arena .ofConfined ()) {
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ public void test_addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct2_du
224
224
SequenceLayout boolArray = MemoryLayout .sequenceLayout (2 , JAVA_BOOLEAN );
225
225
GroupLayout structLayout2 = MemoryLayout .structLayout (boolArray .withName ("array_elem1" ), JAVA_BOOLEAN .withName ("elem2" ));
226
226
FunctionDescriptor fd = FunctionDescriptor .of (structLayout2 , structLayout1 , structLayout2 );
227
- MemorySegment functionSymbol = nativeLibLookup .find ("addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct1_dupStruct " ).get ();
227
+ MemorySegment functionSymbol = nativeLibLookup .find ("addBoolStruct1AndNestedBoolArrayStruct2WithXor_returnStruct2_dupStruct " ).get ();
228
228
MethodHandle mh = linker .downcallHandle (functionSymbol , fd );
229
229
230
230
try (Arena arena = Arena .ofConfined ()) {
You can’t perform that action at this time.
0 commit comments