[Lldb-commits] [lldb] [lldb] Add support for displaying `__float128` variables (PR #98369)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 12 01:36:56 PDT 2024


================
@@ -195,10 +199,10 @@ enum Format {
                          ///< character arrays that can contain non printable
                          ///< characters
   eFormatAddressInfo,    ///< Describe what an address points to (func + offset
-                      ///< with file/line, symbol + offset, data, etc)
-  eFormatHexFloat,    ///< ISO C99 hex float string
-  eFormatInstruction, ///< Disassemble an opcode
-  eFormatVoid,        ///< Do not print this
+                         ///< with file/line, symbol + offset, data, etc)
+  eFormatHexFloat,       ///< ISO C99 hex float string
+  eFormatInstruction,    ///< Disassemble an opcode
+  eFormatVoid,           ///< Do not print this
----------------
DavidSpickett wrote:

FYI that llvm does squash and merge only, so the commits will become one. So you can either push each part of this PR manually or push the formatting change separately after the PR goes in.

https://github.com/llvm/llvm-project/pull/98369


More information about the lldb-commits mailing list