Gcc cleanup for CpuLib in mdepkg/library/

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5588 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
eric_tian 2008-07-31 06:51:00 +00:00
parent 85c25283ed
commit 12b2b6c416
3 changed files with 6 additions and 6 deletions

View File

@ -20,7 +20,7 @@
#
#------------------------------------------------------------------------------
.global _CpuFlushTlb
.global ASM_PFX(CpuFlushTlb)
#------------------------------------------------------------------------------
# VOID
@ -29,7 +29,7 @@
# VOID
# );
#------------------------------------------------------------------------------
_CpuFlushTlb:
ASM_PFX(CpuFlushTlb):
mov %cr3, %rax
mov %rax, %cr3
ret

View File

@ -28,7 +28,7 @@
# VOID
# );
#------------------------------------------------------------------------------
.global _CpuPause;
_CpuPause:
.global ASM_PFX(CpuPause)
ASM_PFX(CpuPause):
pause
ret

View File

@ -28,7 +28,7 @@
# VOID
# );
#------------------------------------------------------------------------------
.global _CpuSleep;
_CpuSleep:
.global ASM_PFX(CpuSleep)
ASM_PFX(CpuSleep):
hlt
ret