SR-MPLS: MPLS table checks (VPP-1422)
[vpp.git] / src / vppinfra / vector_sse42.h
index 7673794..2b6246e 100644 (file)
@@ -616,7 +616,7 @@ u8x16_shuffle (u8x16 v, u8x16 m)
 static_always_inline u32x4
 u32x4_shuffle (u32x4 v, const int a, const int b, const int c, const int d)
 {
-#ifdef __clang__
+#if defined(__clang__) || !__OPTIMIZE__
   u32x4 r = { v[a], v[b], v[c], v[d] };
   return r;
 #else