diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-01-23 00:21:57 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-01-23 00:21:57 +0000 |
commit | 96cc1800e7d04302631b76bb8a2d8a0287ba6ff4 (patch) | |
tree | 40b3c9b92db8736508983286bc31d56881455b3b | |
parent | 947a5a9ae84cba2e20536ead860c5de6e73ebc6a (diff) | |
download | edk2-platforms-96cc1800e7d04302631b76bb8a2d8a0287ba6ff4.tar.xz |
Fix xcode tool chain assembly issue.
Contributed-under: TianoCore Contribution Agrement 1.0
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
signed-off-by: Andrew Fish <afish@apple.com>
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14078 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | OvmfPkg/Library/LoadLinuxLib/X64/JumpToKernel.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OvmfPkg/Library/LoadLinuxLib/X64/JumpToKernel.S b/OvmfPkg/Library/LoadLinuxLib/X64/JumpToKernel.S index 6a6335d063..06d0a1f556 100644 --- a/OvmfPkg/Library/LoadLinuxLib/X64/JumpToKernel.S +++ b/OvmfPkg/Library/LoadLinuxLib/X64/JumpToKernel.S @@ -34,7 +34,7 @@ ASM_PFX(JumpToKernel): pushq $0x10
leaq 1f(%rip), %rax
pushq %rax
- .byte 0x48, 0xcb ; retfq
+ .byte 0x48, 0xcb // retfq
1: // Now in compatibility mode
.code32
|