[fpc-devel] How to manually control debug information

2005-06-02 Thread Nico Aragón
essor: ...processed.pas... 25 procedure AddFive(var a, b: Integer); 26 begin 27 Inc(b); 28 a := b; 29 end; I would like that stepping in the debugger through AddFive showed original.pas in lines 21 to 24, not processed.pas in lines 25 to 29. How could I do that? -- saludos, Nico A

Re: [fpc-devel] compiler bug?

2004-12-31 Thread Nico Aragón
e" and sometimes you must know what's the internal representation of the data, i.e. when you're linking with code written in different languages or writing inline assembler. ¡Feliz año, torpedo! :-) -- saludos, Nico Aragón http://espira.net/nico/ ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-devel

Re: [fpc-devel] compiler bug?

2004-12-30 Thread Nico Aragón
El Jueves, 30 de Diciembre de 2004 22:48, Jesus Reyes escribiste: > procedure doAorB(value: boolean); > begin > case value of > true: doA; > false: doB; > end; > end; if Value then DoA else BoB; -- saludos, Nico Aragón h