Convert constant tag to the correct type for LLVMAddCase

This commit is contained in:
gingerBill
2021-07-10 22:29:52 +01:00
parent 2949e4b0c7
commit adb25d9d19

View File

@@ -4909,6 +4909,7 @@ void lb_build_switch_stmt(lbProcedure *p, AstSwitchStmt *ss, Scope *scope) {
GB_ASSERT(!is_ast_range(expr));
on_val = lb_build_expr(p, expr);
on_val = lb_emit_conv(p, on_val, tag.type);
}
GB_ASSERT(LLVMIsConstant(on_val.value));