[Lldb-commits] [lldb] [lldb] Add support for displaying `__float128` variables (PR #98369)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Thu Jul 11 03:02:08 PDT 2024
================
@@ -334,6 +334,8 @@ static const llvm::fltSemantics &GetFloatSemantics(const TargetSP &target_sp,
return llvm::APFloat::IEEEsingle();
case 8:
return llvm::APFloat::IEEEdouble();
+ case 16:
+ return llvm::APFloat::IEEEquad();
----------------
labath wrote:
This may not be a "reasonable" guess, given that sizeof(long double) is also 16 (on x86)
https://github.com/llvm/llvm-project/pull/98369
More information about the lldb-commits
mailing list