MdePkg BaseSynchronizationLib InterlockedCompareExchange64: Fix ICC build

Remove extra qword in nasm code to make it pass build.
This file is only built in INTEL ICC compiler. So, there is missing
build check for it.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Jeff Fan <jeff.fan@intel.com>
This commit is contained in:
Liming Gao 2016-10-14 14:47:33 +08:00
parent 07309c3ddc
commit 9ba2869c7e
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ ASM_PFX(InternalSyncCompareExchange64):
mov edx, [esp + 20]
mov ebx, [esp + 24]
mov ecx, [esp + 28]
lock cmpxchg8b qword [esi]
lock cmpxchg8b [esi]
pop ebx
pop esi
ret