mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
UserspaceEmulator: Use unsigned types for logical MMX shifting
This commit is contained in:
parent
a3b8303f3c
commit
d06675e3e4
Notes:
sideshowbarker
2024-07-18 01:43:16 +09:00
Author: https://github.com/Hendiadyoin1 Commit: https://github.com/SerenityOS/serenity/commit/d06675e3e4c Pull-request: https://github.com/SerenityOS/serenity/pull/8946 Reviewed-by: https://github.com/Dexesttp Reviewed-by: https://github.com/awesomekling Reviewed-by: https://github.com/kleinesfilmroellchen ✅
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…
Reference in a new issue