1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 16:29:32 +00:00

don't fall through

This commit is contained in:
mrdudz 2022-11-05 15:58:11 +01:00
parent c8cdc1dc60
commit 39e82722fc

View File

@ -2524,7 +2524,10 @@ void g_push (unsigned flags, unsigned long val)
AddCodeLine ("jsr pushax");
break;
case CF_FLOAT: /* FIXME: float - handle like long here */
case CF_FLOAT:
/* FIXME: float - handle like long here */
AddCodeLine ("jsr pusheax");
break;
case CF_LONG:
AddCodeLine ("jsr pusheax");