Skip to content

Commit 6a91505

Browse files
committed
allow (u)char eval commits in integer committing path
1 parent e222996 commit 6a91505

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/df/core/df_core.c

+7
Original file line numberDiff line numberDiff line change
@@ -4787,14 +4787,21 @@ df_commit_eval_value(TG_Graph *graph, RADDBG_Parsed *rdbg, DF_CtrlCtx *ctrl_ctx,
47874787
}break;
47884788

47894789
//- rjf: integers
4790+
case TG_Kind_Char8:
4791+
case TG_Kind_Char16:
4792+
case TG_Kind_Char32:
47904793
case TG_Kind_S8:
47914794
case TG_Kind_S16:
47924795
case TG_Kind_S32:
47934796
case TG_Kind_S64:
4797+
case TG_Kind_UChar8:
4798+
case TG_Kind_UChar16:
4799+
case TG_Kind_UChar32:
47944800
case TG_Kind_U8:
47954801
case TG_Kind_U16:
47964802
case TG_Kind_U32:
47974803
case TG_Kind_U64:
4804+
case TG_Kind_Bool:
47984805
if(TG_Kind_Char8 <= src_type_kind && src_type_kind <= TG_Kind_Bool)
47994806
{
48004807
DF_Eval value_eval = df_value_mode_eval_from_eval(graph, rdbg, ctrl_ctx, src_eval);

0 commit comments

Comments
 (0)