Replace .global with .globl to solve compatibility issues.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1786 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8
2006-10-18 03:48:37 +00:00
parent a753ec90e8
commit 1cb5cfc184
6 changed files with 36 additions and 36 deletions

View File

@@ -10,7 +10,7 @@
#* WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#*
#****************************************************************************
.global _EbcLLCALLEXNative
.globl _EbcLLCALLEXNative
_EbcLLCALLEXNative:
push %ebp
mov %esp,%ebp
@@ -23,16 +23,16 @@ _EbcLLCALLEXNative:
pop %ebp
ret
.global _EbcLLGetEbcEntryPoint
.globl _EbcLLGetEbcEntryPoint
_EbcLLGetEbcEntryPoint:
ret
.global _EbcLLGetStackPointer
.globl _EbcLLGetStackPointer
_EbcLLGetStackPointer:
mov %esp,%eax
add $0x4,%eax
ret
.global _EbcLLGetReturnValue
.globl _EbcLLGetReturnValue
_EbcLLGetReturnValue:
ret

View File

@@ -18,7 +18,7 @@
# Generic math routines for EBC interpreter running on IA32 processor
#
#------------------------------------------------------------------------------
.global _LeftShiftU64
.globl _LeftShiftU64
_LeftShiftU64:
push %ebp
mov %esp,%ebp
@@ -43,7 +43,7 @@ _LeftShiftU64:
leave
ret
.global _RightShiftU64
.globl _RightShiftU64
_RightShiftU64:
push %ebp
mov %esp,%ebp
@@ -68,7 +68,7 @@ _RightShiftU64:
leave
ret
.global _ARightShift64
.globl _ARightShift64
_ARightShift64:
push %ebp
mov %esp,%ebp
@@ -98,7 +98,7 @@ _ARightShift64:
leave
ret
.global _MulU64x64
.globl _MulU64x64
_MulU64x64:
push %ebp
mov %esp,%ebp
@@ -134,7 +134,7 @@ _MulU64x64:
leave
ret
.global _MulS64x64
.globl _MulS64x64
_MulS64x64:
push %ebp
mov %esp,%ebp
@@ -186,7 +186,7 @@ _MulS64x64:
leave
ret
.global _DivU64x64
.globl _DivU64x64
_DivU64x64:
push %ebp
mov %esp,%ebp
@@ -233,7 +233,7 @@ _DivU64x64:
leave
ret
.global _DivS64x64
.globl _DivS64x64
_DivS64x64:
push %ebp
mov %esp,%ebp