diff options
author | Jordan Justen <jordan.l.justen@intel.com> | 2014-10-17 15:10:05 -0700 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-06-28 09:48:23 +0800 |
commit | 2807e6b86a46aadf483f03a4a5e84072d76896b8 (patch) | |
tree | a750a090ba553c67f4eaa2d2e40a7d182431e192 | |
parent | 8278af7d21736ccff591bda6846d545ccc7147b4 (diff) | |
download | edk2-platforms-2807e6b86a46aadf483f03a4a5e84072d76896b8.tar.xz |
MdePkg BaseLib Ia32/DivU64x64Remainder: Make _@DivRemU64x64 private
This helps generate proper code when converted to NASM, and there is
also no reason for this symbol to be public.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/DivU64x64Remainder.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/DivU64x64Remainder.asm b/MdePkg/Library/BaseLib/Ia32/DivU64x64Remainder.asm index 98dddb067b..44e2271235 100644 --- a/MdePkg/Library/BaseLib/Ia32/DivU64x64Remainder.asm +++ b/MdePkg/Library/BaseLib/Ia32/DivU64x64Remainder.asm @@ -47,7 +47,7 @@ InternalMathDivRemU64x64 PROC jmp InternalMathDivRemU64x32
InternalMathDivRemU64x64 ENDP
-_@DivRemU64x64 PROC USES ebx esi edi
+_@DivRemU64x64 PROC PRIVATE USES ebx esi edi
mov edx, dword ptr [esp + 20]
mov eax, dword ptr [esp + 16] ; edx:eax <- dividend
mov edi, edx
|