Skip to content

Commit a2aae95

Browse files
EmployedRussianrhuanjl
authored andcommitted
Fix issue#6982 -- PM128A should be a pointer to 16-byte aligned M128U,
not a 16-byte aligned pointer.
1 parent 0ffb510 commit a2aae95

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pal/inc/pal.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2498,7 +2498,8 @@ typedef struct _M128U {
24982498
} M128U, *PM128U;
24992499

25002500
// Same as _M128U but aligned to a 16-byte boundary
2501-
typedef DECLSPEC_ALIGN(16) M128U M128A, *PM128A;
2501+
typedef DECLSPEC_ALIGN(16) M128U M128A;
2502+
typedef M128A *PM128A;
25022503

25032504
typedef struct _XMM_SAVE_AREA32 {
25042505
WORD ControlWord;

0 commit comments

Comments
 (0)