X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Fcrc32.h;h=fec67cd9757fbfe478b8d6736b901ae650800354;hb=d9818dd68c162079f3ddb5443a78d0d91d55d0fe;hp=5f4d94f3847472667c7391b7ed230c12c9349639;hpb=d6897c1597c4f0904d5956f7d794e3f001d52f72;p=vpp.git diff --git a/src/vppinfra/crc32.h b/src/vppinfra/crc32.h index 5f4d94f3847..fec67cd9757 100644 --- a/src/vppinfra/crc32.h +++ b/src/vppinfra/crc32.h @@ -30,14 +30,14 @@ clib_crc32c (u8 * s, int len) { u32 v = 0; -#if __x86_64__ +#if defined(__x86_64__) for (; len >= 8; len -= 8, s += 8) v = _mm_crc32_u64 (v, *((u64 *) s)); #else /* workaround weird GCC bug when using _mm_crc32_u32 which happens with -O2 optimization */ #if !defined (__i686__) - volatile ("":::"memory"); + asm volatile ("":::"memory"); #endif #endif