diff options
author | Greg Clayton <gclayton@apple.com> | 2011-06-17 23:50:44 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-06-17 23:50:44 +0000 |
commit | 4e4294bdeee8d41b74f8ddf671aa00952b645c3d (patch) | |
tree | a65127dfa5acbb60ff3cc22537482de0ccc5bbcd /lldb/source/Interpreter/Args.cpp | |
parent | 1240f4e53a6eb0a0f25b714d0e994137bc3d26c5 (diff) | |
download | bcm5719-llvm-4e4294bdeee8d41b74f8ddf671aa00952b645c3d.tar.gz bcm5719-llvm-4e4294bdeee8d41b74f8ddf671aa00952b645c3d.zip |
Added a new format for displaying an array of characters: eFormatCharArray
This us useful because sometomes you have to show a single character as: 'a'
(using eFormatChar) and other times you might have an array of single
charcters for display as: 'a' 'b' 'c', and other times you might want to
show the contents of buffer of characters that can contain non printable
chars: "\0\x22\n123".
This also fixes an issue that currently happens when you have a single character
C string (const char *a = "a"; or char b[1] = { 'b' };) that was being output
as "'a'" incorrectly due to the way the eFormatChar format output worked.
llvm-svn: 133316
Diffstat (limited to 'lldb/source/Interpreter/Args.cpp')
-rw-r--r-- | lldb/source/Interpreter/Args.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/Args.cpp b/lldb/source/Interpreter/Args.cpp index 95183a0686c..1913132fc83 100644 --- a/lldb/source/Interpreter/Args.cpp +++ b/lldb/source/Interpreter/Args.cpp @@ -908,6 +908,7 @@ Args::StringToFormat case 'Y': format = eFormatBytesWithASCII; break; case 'b': format = eFormatBinary; break; case 'B': format = eFormatBoolean; break; + case 'a': format = eFormatCharArray; break; case 'c': format = eFormatChar; break; case 'C': format = eFormatCharPrintable; break; case 'o': format = eFormatOctal; break; @@ -930,6 +931,7 @@ Args::StringToFormat } if (!success) error.SetErrorStringWithFormat ("Invalid format specification '%s'. Valid values are:\n" + " a - char buffer\n" " b - binary\n" " B - boolean\n" " c - char\n" |