X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=MdePkg%2FLibrary%2FBaseLib%2FIa32%2FReadMm1.S;h=a893ff7c3866f94413c7d6723533ab9463d56a7e;hp=cbaafff0f34cd6b1eecccadbbc0636fc69041eb4;hb=3f566587aea64bb986866c7f69a6b82891bf59db;hpb=31a9215c3223d3818d1709f39d06774e18df103f diff --git a/MdePkg/Library/BaseLib/Ia32/ReadMm1.S b/MdePkg/Library/BaseLib/Ia32/ReadMm1.S index cbaafff0f3..a893ff7c38 100644 --- a/MdePkg/Library/BaseLib/Ia32/ReadMm1.S +++ b/MdePkg/Library/BaseLib/Ia32/ReadMm1.S @@ -21,10 +21,7 @@ # #------------------------------------------------------------------------------ - - - - +.global _AsmReadMm1 #------------------------------------------------------------------------------ # UINTN @@ -33,14 +30,10 @@ # VOID # ); #------------------------------------------------------------------------------ -.global _AsmReadMm1 -_AsmReadMm1: - pushl %eax - pushl %eax - movq %mm1,(%esp) - popl %eax - popl %edx +_AsmReadMm1: + push %eax + push %eax + movq %mm1, (%esp) + pop %eax + pop %edx ret - - -