[Lldb-commits] [PATCH] D83256: [lldb] Fix unaligned load in DataExtractor

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 6 16:58:47 PDT 2020


clayborg added a comment.

Here are the next values for 32 bit and 64 bit floats:

float a = 2.25; // 0x40100000
double b = 2.25; // 0x4002000000000000

You might disable this on windows as I believe they have 10 byte floats for doubles?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D83256/new/

https://reviews.llvm.org/D83256





More information about the lldb-commits mailing list