"llvm/git@repo.hca.bsc.es:lalbano/llvm-bpevl.git" did not exist on "2cbca4e229c39a867c743a47408cb91e027c61cb"
Added the ability to specify a breakpoint using the GDB '*ADDRESS' format:
(lldb) b *0x1234 You can still of course just specify an address: (lldb) b 0x1234 Also now we accept the '&' before function names to indicate to not to skip the function prologue like GDB supports. To see how this works: (lldb) settings set interpreter.expand-regex-aliases 1 (lldb) b &main breakpoint set --name 'main' --skip-prologue=0 Breakpoint 1: where = a.out`main at main.c:20, address = 0x0000000100000b60 (lldb) b main breakpoint set --name 'main' Breakpoint 2: where = a.out`main + 54 at main.c:21, address = 0x0000000100000b96 llvm-svn: 174695
Loading
Please register or sign in to comment