diff options
Diffstat (limited to 'CryptoPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.c')
-rw-r--r-- | CryptoPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/CryptoPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.c b/CryptoPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.c index efa38983a5..4f5f9112d3 100644 --- a/CryptoPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.c +++ b/CryptoPkg/Library/IntrinsicLib/Ia32/MathRShiftU64.c @@ -8,11 +8,13 @@ SPDX-License-Identifier: BSD-2-Clause-Patent **/
-
/*
* Shifts a 64-bit unsigned value right by a certain number of bits.
*/
-__declspec(naked) void __cdecl _aullshr (void)
+__declspec(naked) void __cdecl
+_aullshr (
+ void
+ )
{
_asm {
;
@@ -41,8 +43,9 @@ More32: ret
;
- ; Invalid number (less then 32bits), return 0
+ ; Invalid number (less then 32bits), return 0
;
+
_Exit:
xor eax, eax
xor edx, edx
|