diff options
Diffstat (limited to 'lldb/source/Core/DataExtractor.cpp')
-rw-r--r-- | lldb/source/Core/DataExtractor.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/source/Core/DataExtractor.cpp b/lldb/source/Core/DataExtractor.cpp index 8c60a22821e..861bece98da 100644 --- a/lldb/source/Core/DataExtractor.cpp +++ b/lldb/source/Core/DataExtractor.cpp @@ -1830,10 +1830,8 @@ DataExtractor::Dump (Stream *s, } else if (item_bit_size == ast->getTypeSize(ast->LongDoubleTy)) { - auto byte_size = item_byte_size; const auto &semantics = ast->getFloatTypeSemantics(ast->LongDoubleTy); - if (&semantics == &llvm::APFloat::x87DoubleExtended) - byte_size = 10; + const auto byte_size = (llvm::APFloat::getSizeInBits(semantics) + 7) / 8; llvm::APInt apint; if (GetAPInt(*this, &offset, byte_size, apint)) |