This is the mail archive of the
gdb@sources.redhat.com
mailing list for the GDB project.
Re: breaking at for-loop test line
Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>:
> On Thu, Jul 29, 2004 at 11:58:40AM -0700, Felix Lee wrote:
> > how about just that. something like "asm 30" that will print all
> > the machine instructions that correspond to line 30 of the
> > source.
>
> Do you mean something like the following?
>
> (gdb) info line 223
> Line 223 of "main.c" starts at address 0x804e384 <main+64>
> and ends at 0x804e3a0 <main+92>.
> (gdb) disas 0x804e384 0x804e3a0
yeah, but it would be nice to take into account code optimization
and exclude instructions in that range that aren't relevant to
line 223. but I don't know if there's enough debugging
information to do that.
--