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:
@@ -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
|
||||
|
Reference in New Issue
Block a user