mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 18:29:28 +02:00
* Fixed copy&paste error introduced in r24398, resolves #28584.
git-svn-id: trunk@31475 -
This commit is contained in:
parent
c9b1df2c91
commit
5cfeaedd23
@ -507,7 +507,7 @@ procedure tx64tryexceptnode.pass_generate_code;
|
||||
cg.a_label(current_asmdata.CurrAsmList,breakexceptlabel);
|
||||
cg.g_call(current_asmdata.CurrAsmList,'FPC_DONEEXCEPTION');
|
||||
if (fc_unwind in flowcontrol) then
|
||||
cg.g_local_unwind(current_asmdata.CurrAsmList,oldCurrExitLabel)
|
||||
cg.g_local_unwind(current_asmdata.CurrAsmList,oldBreakLabel)
|
||||
else
|
||||
cg.a_jmp_always(current_asmdata.CurrAsmList,oldBreakLabel);
|
||||
end;
|
||||
@ -517,7 +517,7 @@ procedure tx64tryexceptnode.pass_generate_code;
|
||||
cg.a_label(current_asmdata.CurrAsmList,continueexceptlabel);
|
||||
cg.g_call(current_asmdata.CurrAsmList,'FPC_DONEEXCEPTION');
|
||||
if (fc_unwind in flowcontrol) then
|
||||
cg.g_local_unwind(current_asmdata.CurrAsmList,oldCurrExitLabel)
|
||||
cg.g_local_unwind(current_asmdata.CurrAsmList,oldContinueLabel)
|
||||
else
|
||||
cg.a_jmp_always(current_asmdata.CurrAsmList,oldContinueLabel);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user