r223176 - Intrin: shrx_u64 should be _shrx_u64

David Majnemer david.majnemer at gmail.com
Tue Dec 2 15:30:26 PST 2014


Author: majnemer
Date: Tue Dec  2 17:30:26 2014
New Revision: 223176

URL: http://llvm.org/viewvc/llvm-project?rev=223176&view=rev
Log:
Intrin: shrx_u64 should be _shrx_u64

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=223176&r1=223175&r2=223176&view=diff
==============================================================================
--- cfe/trunk/lib/Headers/Intrin.h (original)
+++ cfe/trunk/lib/Headers/Intrin.h Tue Dec  2 17:30:26 2014
@@ -416,7 +416,7 @@ __int64 _sarx_i64(__int64, unsigned int)
 int __cdecl _setjmpex(jmp_buf);
 #endif
 unsigned __int64 _shlx_u64(unsigned __int64, unsigned int);
-unsigned __int64 shrx_u64(unsigned __int64, unsigned int);
+unsigned __int64 _shrx_u64(unsigned __int64, unsigned int);
 /*
  * Multiply two 64-bit integers and obtain a 64-bit result.
  * The low-half is returned directly and the high half is in an out parameter.





More information about the cfe-commits mailing list