]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/MultU64x64.c
Removed CommonHeader.h generated file from the MdePkg.
[mirror_edk2.git] / MdePkg / Library / BaseLib / MultU64x64.c
index 6324c3e335091d02b13734a5a17d74ffe4701dc2..0f99892bd8a00666832cf5d5f0ee63a83424ecb7 100644 (file)
 \r
 **/\r
 \r
+//\r
+// Include common header file for this module.\r
+//\r
+\r
+\r
 #include "BaseLibInternals.h"\r
 \r
 /**\r
@@ -22,8 +27,6 @@
   unsigned value Multiplier and generates a 64-bit unsigned result. This 64-\r
   bit unsigned result is returned.\r
 \r
-  If the result overflows, then ASSERT().\r
-\r
   @param  Multiplicand  A 64-bit unsigned value.\r
   @param  Multiplier    A 64-bit unsigned value.\r
 \r
@@ -40,6 +43,6 @@ MultU64x64 (
   UINT64                            Result;\r
 \r
   Result = InternalMathMultU64x64 (Multiplicand, Multiplier);\r
-  // TODO: ASSERT (Result not overflow);\r
+\r
   return Result;\r
 }\r