diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/FlushCacheLine.asm')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/FlushCacheLine.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.asm b/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.asm index c1e6466d04..f4ad87de7b 100644 --- a/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.asm +++ b/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.asm @@ -22,7 +22,7 @@ ;------------------------------------------------------------------------------
.586P
- .model flat
+ .model flat,C
.xmm
.code
@@ -33,10 +33,10 @@ ; IN VOID *LinearAddress
; );
;------------------------------------------------------------------------------
-_AsmFlushCacheLine PROC
+AsmFlushCacheLine PROC
mov eax, [esp + 4]
clflush [eax]
ret
-_AsmFlushCacheLine ENDP
+AsmFlushCacheLine ENDP
END
|