diff options
author | beetrees <b@beetr.ee> | 2025-08-01 02:04:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-31 18:04:48 -0700 |
commit | e15b3ef704dec573452f6e318617c10031491030 (patch) | |
tree | ed0c17d134c4c21be2884d1514bafe1a37ededa1 /lldb/source/Commands/CommandObjectMemory.cpp | |
parent | 03bb10bea6edeb6b1cbcb3fc6b590e585ae43ad6 (diff) | |
download | llvm-e15b3ef704dec573452f6e318617c10031491030.zip llvm-e15b3ef704dec573452f6e318617c10031491030.tar.gz llvm-e15b3ef704dec573452f6e318617c10031491030.tar.bz2 |
[lldb] Add support for displaying `__float128` variables (#98369)
Diffstat (limited to 'lldb/source/Commands/CommandObjectMemory.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectMemory.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp index 5792c13..af1ff3e 100644 --- a/lldb/source/Commands/CommandObjectMemory.cpp +++ b/lldb/source/Commands/CommandObjectMemory.cpp @@ -156,6 +156,7 @@ public: case eFormatBinary: case eFormatFloat: + case eFormatFloat128: case eFormatOctal: case eFormatDecimal: case eFormatEnum: @@ -1356,6 +1357,7 @@ protected: switch (m_format_options.GetFormat()) { case kNumFormats: case eFormatFloat: // TODO: add support for floats soon + case eFormatFloat128: case eFormatCharPrintable: case eFormatBytesWithASCII: case eFormatComplex: |