mirror of
https://github.com/avrdudes/avrdude.git
synced 2026-09-24 18:16:22 +03:00
Loosen condition for recognising existing label
This commit is contained in:
@@ -49,7 +49,7 @@ void Register_JumpCall(int From, int To, int Type, unsigned char FunctionCall) {
|
||||
|
||||
// Already entered this JC?
|
||||
for(int i = 0; i < N; i++)
|
||||
if(jc[i].From == From && jc[N].To == To && jc[N].Type == Type && jc[N].FunctionCall == FunctionCall)
|
||||
if(jc[i].From == From && jc[N].To == To && jc[N].Type == Type)
|
||||
return;
|
||||
|
||||
jc = mmt_realloc(jc, sizeof(Disasm_JumpCall) * (N+1));
|
||||
|
||||
Reference in New Issue
Block a user