r223179 - FullProduct should be _FullProduct

David Majnemer david.majnemer at gmail.com
Tue Dec 2 15:44:40 PST 2014


Author: majnemer
Date: Tue Dec  2 17:44:40 2014
New Revision: 223179

URL: http://llvm.org/viewvc/llvm-project?rev=223179&view=rev
Log:
FullProduct should be _FullProduct

Modified:
    cfe/trunk/lib/Headers/Intrin.h

Modified: cfe/trunk/lib/Headers/Intrin.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Headers/Intrin.h?rev=223179&r1=223178&r2=223179&view=diff
==============================================================================
--- cfe/trunk/lib/Headers/Intrin.h (original)
+++ cfe/trunk/lib/Headers/Intrin.h Tue Dec  2 17:44:40 2014
@@ -426,8 +426,8 @@ _umul128(unsigned __int64 _Multiplier, u
          unsigned __int64 *_HighProduct) {
   unsigned __int128 _FullProduct =
       (unsigned __int128)_Multiplier * (unsigned __int128)_Multiplicand;
-  *_HighProduct = FullProduct >> 64;
-  return FullProduct;
+  *_HighProduct = _FullProduct >> 64;
+  return _FullProduct;
 }
 void __cdecl _xrstor64(void const *, unsigned __int64);
 void __cdecl _xsave64(void *, unsigned __int64);





More information about the cfe-commits mailing list