-
-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bugzilla 24733 - ImportC:
#pragma pack(pop)
restores wrong alig…
…nment (#16821)
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
struct S1 {unsigned char c;int i;}; | ||
#pragma pack(push, 2) | ||
struct S2 {unsigned char c;int i;}; | ||
#pragma pack(push, 1) | ||
struct S3 {unsigned char c;int i;}; | ||
#pragma pack(pop) | ||
struct S4 {unsigned char c;int i;}; | ||
#pragma pack(pop) | ||
struct S5 {unsigned char c;int i;}; | ||
|
||
_Static_assert(_Alignof(struct S1) == 4, "alignof S1"); | ||
_Static_assert(_Alignof(struct S2) == 2, "alignof S2"); | ||
_Static_assert(_Alignof(struct S3) == 1, "alignof S3"); | ||
_Static_assert(_Alignof(struct S4) == 2, "alignof S4"); | ||
_Static_assert(_Alignof(struct S5) == 4, "alignof S5"); | ||
|
||
_Static_assert(sizeof(struct S1) == 8, "sizeof S1"); | ||
_Static_assert(sizeof(struct S2) == 6, "sizeof S2"); | ||
_Static_assert(sizeof(struct S3) == 5, "sizeof S3"); | ||
_Static_assert(sizeof(struct S4) == 6, "sizeof S4"); | ||
_Static_assert(sizeof(struct S5) == 8, "sizeof S5"); |