When I set a breakpoint at the address of main, I get just the address back:
(lldb) break set -a `&main` Breakpoint 1: address = 0x00000000004004f0 When I break at main, I get the source line and the address: (lldb) settings set target.skip-prologue false (lldb) b main Breakpoint 2: where = a.out`main at hello.c:3, address = 0x00000000004004f0 Should break set -a also print out symbol, source file and line?
_______________________________________________ lldb-dev mailing list lldb-dev@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev