mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:57:44 +00:00
UserspaceEmulator: Use unsigned types for logical MMX shifting
This commit is contained in:
parent
a3b8303f3c
commit
d06675e3e4
1 changed files with 2 additions and 2 deletions
|
@ -25,8 +25,8 @@ union MMX {
|
|||
c8x8 v8;
|
||||
i16x4 v16;
|
||||
i32x2 v32;
|
||||
i16x4 v16u;
|
||||
i32x2 v32u;
|
||||
u16x4 v16u;
|
||||
u32x2 v32u;
|
||||
};
|
||||
static_assert(AssertSize<MMX, sizeof(u64)>());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue