Skip to content

Commit 00e4d36

Browse files
committed
confused returnval and argument types
1 parent 326d6dc commit 00e4d36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vm/jvm/QAST/Compiler.nqp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2460,7 +2460,7 @@ QAST::OperationsJAST.map_classlib_core_op('currentthread', $TYPE_OPS, 'currentth
24602460
QAST::OperationsJAST.map_classlib_core_op('lock', $TYPE_OPS, 'lock', [$RT_OBJ], $RT_OBJ, :tc);
24612461
QAST::OperationsJAST.map_classlib_core_op('unlock', $TYPE_OPS, 'unlock', [$RT_OBJ], $RT_OBJ, :tc);
24622462
QAST::OperationsJAST.map_classlib_core_op('semacquire', $TYPE_OPS, 'semacquire', [$RT_OBJ], $RT_OBJ, :tc);
2463-
QAST::OperationsJAST.map_classlib_core_op('semtryacquire', $TYPE_OPS, 'semtryacquire', [$RT_INT], $RT_OBJ, :tc);
2463+
QAST::OperationsJAST.map_classlib_core_op('semtryacquire', $TYPE_OPS, 'semtryacquire', [$RT_OBJ], $RT_INT, :tc);
24642464
QAST::OperationsJAST.map_classlib_core_op('semrelease', $TYPE_OPS, 'semrelease', [$RT_OBJ], $RT_OBJ, :tc);
24652465

24662466
# JVM-specific ops for compilation unit handling

0 commit comments

Comments
 (0)