]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/log/config/x86-ext/ssse3.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / log / config / x86-ext / ssse3.cpp
index 4bcfe2bc7542f064164ac79ac062f45e3d255a23..f577f4e060dc09598cdc8c6331282706436a07b7 100644 (file)
@@ -6,14 +6,13 @@
  */
 
 #include <tmmintrin.h>
-
-void pretend_used(__m128i*);
+#include <stdio.h>
 
 int main(int, char*[])
 {
     __m128i mm = _mm_setzero_si128();
-    pretend_used(&mm);
+    fread(&mm, 1u, sizeof(mm), stdin);
     mm = _mm_shuffle_epi8(_mm_alignr_epi8(mm, mm, 10), mm);
-    pretend_used(&mm);
+    fwrite(&mm, 1u, sizeof(mm), stdout);
     return 0;
 }