mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1167230 - Don't pack ProfileEntry on ARM. r=shu
This commit is contained in:
parent
3f959cd72f
commit
a6fde4a49f
@ -33,7 +33,10 @@
|
||||
|
||||
class ThreadProfile;
|
||||
|
||||
// NB: Packing this structure has been shown to cause SIGBUS issues on ARM.
|
||||
#ifndef __arm__
|
||||
#pragma pack(push, 1)
|
||||
#endif
|
||||
|
||||
class ProfileEntry
|
||||
{
|
||||
@ -81,7 +84,9 @@ private:
|
||||
char mTagName;
|
||||
};
|
||||
|
||||
#ifndef __arm__
|
||||
#pragma pack(pop)
|
||||
#endif
|
||||
|
||||
class UniqueJSONStrings
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user