Displaying 1 result from an estimated 1 matches for "000bar".
Did you mean:
f00bar
2016 Jun 01
1
GDB pretty printers for LLVM ADTs
In r271357 I've committed GDB pretty printer script for the following types
- ArrayRef
$1 = llvm::ArrayRef of length 3 = {1, 0, 7}
- StringRef
$2 = "foo\000bar"
$3 = "fo"
- SmallString
$4 = "foo\000bar"
- *SmallVector(Impl)*
$5 = llvm::SmallVector of length 3, capacity 3 = {1, 0, 7}
All of these visualizers are pretty simple, robust, should work when
debugging a core dump (ie: non-live/not executing any code in the...