[fpc-devel] A bug with temp allocation?

2007-11-18 Thread Sergei Gorelkin
Hello, I have noticed a strange thing with FPC-generated assembler code. The Pascal code is very simple: program test; {$mode objfpc}{$h+} type TObj = class(TObject) public destructor Destroy; override; end; destructor TObj.Destroy; begin writeln('TObj.Destroy'); end; begin end. I

Re: [fpc-devel] A bug with temp allocation?

2007-11-18 Thread Peter Vreman
> Hello, > > I have noticed a strange thing with FPC-generated assembler code. > The Pascal code is very simple: > > program test; > {$mode objfpc}{$h+} > type >TObj = class(TObject) >public > destructor Destroy; override; >end; > > destructor TObj.Destroy; > begin >writeln('TO

Re: [fpc-devel] daemonapp 100% cpu easting fix

2007-11-18 Thread Steve Howe
Hello all, > > Then the TDaemonThread.CheckControlMessage() method should be declared > > virtual, so that messages could actually be checked for, shouldn't it ? > > No, why ? It must simply be implemented globally by default? > > If you want to override the default, then of course it should be vi