summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/ia32/MultU64x32.s
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/ia32/MultU64x32.s')
-rw-r--r--MdePkg/Library/BaseLib/ia32/MultU64x32.s36
1 files changed, 0 insertions, 36 deletions
diff --git a/MdePkg/Library/BaseLib/ia32/MultU64x32.s b/MdePkg/Library/BaseLib/ia32/MultU64x32.s
deleted file mode 100644
index 03c520bcf7..0000000000
--- a/MdePkg/Library/BaseLib/ia32/MultU64x32.s
+++ /dev/null
@@ -1,36 +0,0 @@
-#------------------------------------------------------------------------------
-#
-# Copyright (c) 2006, Intel Corporation
-# All rights reserved. This program and the accompanying materials
-# are licensed and made available under the terms and conditions of the BSD License
-# which accompanies this distribution. The full text of the license may be found at
-# http://opensource.org/licenses/bsd-license.php
-#
-# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-#
-# Module Name:
-#
-# MultU64x32.asm
-#
-# Abstract:
-#
-# Calculate the product of a 64-bit integer and a 32-bit integer
-#
-#------------------------------------------------------------------------------
-
-
-
-
-
-.global _MultU64x32
-_MultU64x32:
- movl 12(%esp),%ecx
- movl %ecx,%eax
- imull 8(%esp),%ecx
- mull 4(%esp)
- addl %ecx,%edx
- ret
-
-
-