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
6b8cbfa1a0
commit
edad1539d9
@ -25,7 +25,10 @@
|
|||||||
|
|
||||||
class ThreadProfile;
|
class ThreadProfile;
|
||||||
|
|
||||||
|
// NB: Packing this structure has been shown to cause SIGBUS issues on ARM.
|
||||||
|
#ifndef __arm__
|
||||||
#pragma pack(push, 1)
|
#pragma pack(push, 1)
|
||||||
|
#endif
|
||||||
|
|
||||||
class ProfileEntry
|
class ProfileEntry
|
||||||
{
|
{
|
||||||
@ -73,7 +76,9 @@ private:
|
|||||||
char mTagName;
|
char mTagName;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifndef __arm__
|
||||||
#pragma pack(pop)
|
#pragma pack(pop)
|
||||||
|
#endif
|
||||||
|
|
||||||
class UniqueJSONStrings
|
class UniqueJSONStrings
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user