"git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "4f4ed0acdf2b2c7bba05999a379e28b05048aeac"
<rdar://problem/12437929>
Providing a special mode of operator for "memory read -f c-str" which actually works in most common cases Where the old behavior would provide: (lldb) mem read --format s `foo` 0x100000f5d: NULL Now we do: (lldb) mem read --format s `foo` 0x100000f5d: "hello world" You can also specify a count and that many strings will be showed starting at the initial address: (lldb) mem read -c 2 -f c-str `foo` 0x100000f1d: "hello world" 0x100000f29: "short" llvm-svn: 173076
Loading
Please register or sign in to comment