commit | 7e48810f5b7e1d160d16e6cee7db00aaf89f844d | [log] [tgz] |
---|---|---|
author | Anders Carlsson <andersca@mac.com> | Thu Dec 25 07:07:08 2008 +0000 |
committer | Anders Carlsson <andersca@mac.com> | Thu Dec 25 07:07:08 2008 +0000 |
tree | 0f78a8bbd238f449a158d93160f55a77f135ebef | |
parent | c5ab14f4071aba1303516902ae1c30f40903aafb [diff] [blame] |
Make _mm_add_si64 inlined git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61428 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Headers/emmintrin.devel.h b/lib/Headers/emmintrin.devel.h index 7540aec..2f5ad8e 100644 --- a/lib/Headers/emmintrin.devel.h +++ b/lib/Headers/emmintrin.devel.h
@@ -485,7 +485,7 @@ return (__m128i)((__v4si)a + (__v4si)b); } -__m64 _mm_add_si64(__m64 a, __m64 b) +static inline __m64 __attribute__((__always_inline__)) _mm_add_si64(__m64 a, __m64 b) { return a + b; }