From 5479b6e722485844882447fd627d3b06f1628ddc Mon Sep 17 00:00:00 2001 From: sergei Date: Mon, 8 Sep 2014 18:08:12 +0000 Subject: [PATCH] * Provide initialization of all variables, fixes cycling with OPT="-dTEST_WIN32_SEH -OoDFA". git-svn-id: trunk@28622 - --- compiler/i386/n386flw.pas | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/compiler/i386/n386flw.pas b/compiler/i386/n386flw.pas index dee3320a9d..ea7aee9261 100644 --- a/compiler/i386/n386flw.pas +++ b/compiler/i386/n386flw.pas @@ -316,6 +316,7 @@ procedure ti386tryfinallynode.pass_generate_code; breakfinallylabel:=nil; exceptlabel:=nil; safecalllabel:=nil; + hreg:=NR_NO; is_safecall:=implicitframe and (current_procinfo.procdef.proccalloption=pocall_safecall); { check if child nodes do a break/continue/exit } @@ -489,6 +490,12 @@ procedure ti386tryexceptnode.pass_generate_code; end; location_reset(location,LOC_VOID,OS_NO); + exceptflowcontrol:=[]; + breakexceptlabel:=nil; + continueexceptlabel:=nil; + breaktrylabel:=nil; + continuetrylabel:=nil; + oldflowcontrol:=flowcontrol; flowcontrol:=[fc_inflowcontrol]; { this can be called recursivly }