[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://r
[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://reviews.llvm.org/D128077
show more ...
[RecordLayout] Fix ItaniumRecordLayoutBuilder so that is grabs the correct bases class offsets from the external sourceCurrently the ItaniumRecordLayoutBuilder when laying out base classes has the
[RecordLayout] Fix ItaniumRecordLayoutBuilder so that is grabs the correct bases class offsets from the external sourceCurrently the ItaniumRecordLayoutBuilder when laying out base classes has the virtualand non-virtual bases mixed up when pulling the base class layouts from the external source.This came up in an LLDB bug where on arm64 because of differences in how it deals withtail padding would layout the bases differently without the correct layout from theexternal source (LLDB). This would result in some fields being off by 4 bytes.Differential Revision: https://reviews.llvm.org/D83008