Re: [fpc-pascal] "Continue" not work properly in except clause on win64

2015-08-28 Thread Toru Takubo
On 2015/08/28 18:56, Sven Barth wrote: Am 28.08.2015 11:08 schrieb "Toru Takubo" mailto:tak...@e-parcel.co.jp>>: > > Hi all, > > I'm trying FPC 3.0.0-rc1 and find "Continue" does not work properly > in except clause but just jump to finally clause on win64. > > Here is a sample code: > --

Re: [fpc-pascal] "Continue" not work properly in except clause on win64

2015-08-28 Thread Sven Barth
Am 28.08.2015 11:08 schrieb "Toru Takubo" : > > Hi all, > > I'm trying FPC 3.0.0-rc1 and find "Continue" does not work properly > in except clause but just jump to finally clause on win64. > > Here is a sample code: > > program sample; > > {$mode objfpc} > > uses >S

[fpc-pascal] "Continue" not work properly in except clause on win64

2015-08-28 Thread Toru Takubo
Hi all, I'm trying FPC 3.0.0-rc1 and find "Continue" does not work properly in except clause but just jump to finally clause on win64. Here is a sample code: program sample; {$mode objfpc} uses SysUtils; var i: Integer; begin try for i:=0 to 2 do begin