Skip to content

Commit 1a512c1

Browse files
tautschnigDaniel Kroening
authored and
Daniel Kroening
committed
Update jbmc/src/java_bytecode/java_bytecode_concurrency_instrumentation.cpp
1 parent 8314f36 commit 1a512c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbmc/src/java_bytecode/java_bytecode_concurrency_instrumentation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ static const std::string get_thread_block_identifier(
8888
const exprt &expr = f_code.arguments()[0];
8989
mp_integer lbl_id;
9090
if(to_integer(to_constant_expr(expr.op0()), lbl_id))
91-
CHECK_RETURN(false);
91+
mp_integer lbl_id = numeric_cast_v<mp_integer>(expr.op0());
9292
return integer2string(lbl_id);
9393
}
9494

0 commit comments

Comments
 (0)