mirror of
https://github.com/cc65/cc65.git
synced 2024-12-31 11:32:00 +00:00
Fixed register usage tracking interfered by CE_SetArg.
This commit is contained in:
parent
2220c58f51
commit
8a166ac82f
@ -360,6 +360,10 @@ void CE_SetArg (CodeEntry* E, const char* Arg)
|
|||||||
|
|
||||||
/* Assign the new one */
|
/* Assign the new one */
|
||||||
E->Arg = GetArgCopy (Arg);
|
E->Arg = GetArgCopy (Arg);
|
||||||
|
|
||||||
|
/* Update the Use and Chg in E */
|
||||||
|
const OPCDesc* D = GetOPCDesc (E->OPC);
|
||||||
|
SetUseChgInfo (E, D);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user