From: Daniel Dunbar Date: Fri, 12 Dec 2008 19:12:02 +0000 (+0000) Subject: Add test case for using mmintrin (and making sure that inlining is X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e6e67f631568af99a38f327c9d1a3da6cb1b9da;p=clang Add test case for using mmintrin (and making sure that inlining is working with and without debug info). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60960 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/mmintrin-test.c b/test/CodeGen/mmintrin-test.c new file mode 100644 index 0000000000..97faae75a6 --- /dev/null +++ b/test/CodeGen/mmintrin-test.c @@ -0,0 +1,26 @@ +// RUN: clang -triple i386-apple-darwin9 -emit-llvm -o %t %s && +// RUN: grep define %t | count 1 && +// RUN: clang -triple i386-apple-darwin9 -g -emit-llvm -o %t %s && +// RUN: grep define %t | count 1 + +#include +#include + +int main(int argc, char *argv[]) { + int array[16] = { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 }; + __m64 *p = (__m64 *)array; + + __m64 accum = _mm_setzero_si64(); + + for (int i=0; i<8; ++i) + accum = _mm_add_pi32(p[i], accum); + + __m64 accum2 = _mm_unpackhi_pi32(accum, accum); + accum = _mm_add_pi32(accum, accum2); + + int result = _mm_cvtsi64_si32(accum); + _mm_empty(); + printf("%d\n", result ); + + return 0; +}