forked from OSchip/llvm-project
Don't pack the structs of the jit debug interface
None of the documentation mentions that the entries are packed structs and also none of the other implementation I found pack them. Differential revision: http://reviews.llvm.org/D15715 llvm-svn: 256244
This commit is contained in:
parent
76fd1052fd
commit
cfcdbde3ce
|
@ -90,7 +90,6 @@ typedef enum
|
|||
JIT_UNREGISTER_FN
|
||||
} jit_actions_t;
|
||||
|
||||
#pragma pack(push, 4)
|
||||
template <typename ptr_t>
|
||||
struct jit_code_entry
|
||||
{
|
||||
|
@ -107,7 +106,6 @@ struct jit_descriptor
|
|||
ptr_t relevant_entry; // pointer
|
||||
ptr_t first_entry; // pointer
|
||||
};
|
||||
#pragma pack(pop)
|
||||
|
||||
JITLoaderGDB::JITLoaderGDB (lldb_private::Process *process) :
|
||||
JITLoader(process),
|
||||
|
|
Loading…
Reference in New Issue