]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLibSse2/Ia32/ZeroMem.S
1.Fix .global issue in GAS (EdkT207).
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibSse2 / Ia32 / ZeroMem.S
index f57276091fd41acfa1336274ea355f01fb649e4a..8b4157f741770bbe625da36bd927082f4b0fcaf1 100644 (file)
@@ -21,7 +21,7 @@
 #
 #------------------------------------------------------------------------------
 
-.global _InternalMemZeroMem
+.globl _InternalMemZeroMem
 
 #------------------------------------------------------------------------------
 #  VOID *
@@ -49,14 +49,14 @@ L0:
     movl    %edx, %ecx
     andl    $15, %edx
     shrl    $4, %ecx
-    jz      @ZeroBytes
+    jz      L_ZeroBytes
     pxor    %xmm0, %xmm0
 L1:
     movntdq %xmm0, (%edi)
     addl    $16, %edi
     loop    L1
     mfence
-@ZeroBytes:
+L_ZeroBytes:
     movl    %edx, %ecx
     rep
     stosb