Bug 1167230 - Don't pack ProfileEntry on ARM. r=shu

This commit is contained in:
Eric Rahm 2015-05-28 15:26:52 -07:00
parent 449794e1b8
commit e5a0754a5a

View File

@ -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
{