MdePkg/Library/BaseLib/X64/ReadCr2.S:

MdePkg/Library/BaseLib/X64/ReadMm0.S:
* Fix syntax error for X64 gcc assembly files.  (Missing parenthesis.)


git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5597 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jljusten 2008-07-31 16:23:36 +00:00
parent 9810cdd88c
commit 0e0c422d4c
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@
# VOID
# );
#------------------------------------------------------------------------------
.global ASM_PFX(AsmReadCr2
.global ASM_PFX(AsmReadCr2)
.align 16
ASM_PFX(AsmReadCr2):
mov %cr2, %rax

View File

@ -31,7 +31,7 @@
#------------------------------------------------------------------------------
.global ASM_PFX(AsmReadMm0)
.align 16
ASM_PFX(AsmReadMm0:
ASM_PFX(AsmReadMm0):
#DB 48h, 0fh, 7eh, 0c0h
movd %mm0, %rax
ret