diff options
| author | Enrico Granata <egranata@apple.com> | 2012-08-09 19:33:34 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2012-08-09 19:33:34 +0000 |
| commit | 7ec18e3d10aeded985ab2fcb0781d17a80ad0df5 (patch) | |
| tree | 1b99f1d79c3231115af2a1928c51e94267a9b966 /lldb/source/Core/ValueObject.cpp | |
| parent | 10c6072d615a45617cf3e26c9b5b8f7f4d0046ef (diff) | |
| download | bcm5719-llvm-7ec18e3d10aeded985ab2fcb0781d17a80ad0df5.tar.gz bcm5719-llvm-7ec18e3d10aeded985ab2fcb0781d17a80ad0df5.zip | |
<rdar://problem/10449092> Adding a new uppercase hex format specifier. This commit also changes the short names for formats so that uppercase hex can be 'X', which was previously assigned to hex float. hex float now has no short name.
llvm-svn: 161606
Diffstat (limited to 'lldb/source/Core/ValueObject.cpp')
| -rw-r--r-- | lldb/source/Core/ValueObject.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index 127152e3bb4..8016bab3d2e 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -1426,6 +1426,7 @@ ValueObject::DumpPrintableRepresentation(Stream& s, (custom_format == eFormatComplexFloat) || (custom_format == eFormatDecimal) || (custom_format == eFormatHex) || + (custom_format == eFormatHexUppercase) || (custom_format == eFormatFloat) || (custom_format == eFormatOctal) || (custom_format == eFormatOSType) || |

