[Lldb-commits] [PATCH] D15715: Don't pack the structs of the jit debug interface
Tamas Berghammer via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 22 07:15:01 PST 2015
tberghammer added a comment.
I hit the problem when debugging an arm32 target from an x86_64 host and this CL fixes that issue. It will break if a 32bit target use the same "pragma pack" attribute I just removed.
The change have no effect for 64bit targets because symfile_size will be 8 byte aligned independently of the "pragma pack" (because all previous member is 8 byte).
http://reviews.llvm.org/D15715
More information about the lldb-commits
mailing list