forked from M-Labs/nac3
1
0
Fork 0

core/codegen/stmt: Convert assertion values to i1

This commit is contained in:
David Mak 2024-07-12 14:07:02 +08:00
parent 1a31a50b8a
commit 51c2175c80
1 changed files with 1 additions and 1 deletions

View File

@ -1637,7 +1637,7 @@ pub fn gen_stmt<G: CodeGenerator>(
}; };
ctx.make_assert_impl( ctx.make_assert_impl(
generator, generator,
test.into_int_value(), generator.bool_to_i1(ctx, test.into_int_value()),
"0:AssertionError", "0:AssertionError",
err_msg, err_msg,
[None, None, None], [None, None, None],