Guest User

Untitled

a guest
Jul 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. *pointer @ length
  2.  
  3. With Xcode 4.3.2,
  4.  
  5. (lldb) mem read -ff -c 10 `test`
  6.  
  7. or
  8.  
  9. (lldb) x/10f `test`
  10.  
  11. or
  12.  
  13. lldb) p test
  14. (float *) $6 = 0x0000000100100a40
  15. (lldb) x/10f `$6`
  16.  
  17. backtick notation allows you to substitute a scalar value (or something that evaluates to a scalar value, e.g. `10+5`) for an argument in lldb commands. And the "p/" and "x/" shortcuts from gdb are mostly supported.
Add Comment
Please, Sign In to add comment