On Wed, 7 Feb 2007, Grizlyk wrote:

Hello.

Can GPP asm output (gpp -S test.cpp) have more readable format, for example,
like this (including source lines)
  ;
  ;    if(feof(fp))break;
  ;
[EMAIL PROTECTED]: ; EAX = ch, EBX = fp, ESI = p, EDI = len
test      byte ptr [ebx+18],32
jne       short @11

Instead of raw sequence of asm code. Maybe any keys exist?

--
Maksim A. Polyanin


'gpp -S -fverbose-asm test.cpp' (adds variable names) or
'gpp -c -g test.cpp && objdump -S -d -l test.o' (adds source lines)

regards,
lajos



_______________________________________________
help-gplusplus mailing list
help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to