]> git.proxmox.com Git - mirror_edk2.git/commit
MdeModulePkg/DebugSupportDxe: Fix XCODE5 build failure
authorMichael Kinney <michael.d.kinney@intel.com>
Tue, 23 May 2017 19:22:37 +0000 (12:22 -0700)
committerMichael Kinney <michael.d.kinney@intel.com>
Wed, 24 May 2017 23:44:21 +0000 (16:44 -0700)
commit0fff7d6740419417b65361529612a49a6a2b96b2
treea70ce0a6058874db29e938f310c0904d22a8db0b
parentc8206f22fd2fb6e72c291304d38d8d1ddee732ce
MdeModulePkg/DebugSupportDxe: Fix XCODE5 build failure

https://bugzilla.tianocore.org/show_bug.cgi?id=572

Update X64 AsmFuncs.S to resolve a build failure using the
XCODE5 tool chain.  This change updates AsmFuncs.S to match
AsmFuncs.asm and AsmFuncs.nasm.

The error generated in XCODE5 build is:

error: invalid instruction mnemonic 'movzxw'
    movzxw 8(%rax), %rax
    ^~~~~~

The correct instruction is

    movzwq 8(%rax), %rax

Cc: Star Zeng <star.zeng@intel.com>
Cc: Eric Dong <eric.dong@intel.com>
Cc: Andrew Fish <afish@apple.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Andrew Fish <afish@apple.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S