aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectMemory.cpp
diff options
context:
space:
mode:
authorbeetrees <b@beetr.ee>2025-08-01 02:04:48 +0100
committerGitHub <noreply@github.com>2025-07-31 18:04:48 -0700
commite15b3ef704dec573452f6e318617c10031491030 (patch)
treeed0c17d134c4c21be2884d1514bafe1a37ededa1 /lldb/source/Commands/CommandObjectMemory.cpp
parent03bb10bea6edeb6b1cbcb3fc6b590e585ae43ad6 (diff)
downloadllvm-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.cpp2
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: