From 6b1afd9f9ba1ebf3da1302339ee31f992fd78687 Mon Sep 17 00:00:00 2001 From: attilaz Date: Fri, 7 Feb 2020 16:17:17 +0100 Subject: [PATCH] added missing simd_cmpneq_ni decl This fixes compilation issue on iOS --- include/bx/simd_t.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/bx/simd_t.h b/include/bx/simd_t.h index 5e5fefa..be38778 100644 --- a/include/bx/simd_t.h +++ b/include/bx/simd_t.h @@ -373,6 +373,9 @@ BX_SIMD128_IMPLEMENT_TEST(xyzw); template Ty simd_not_ni(Ty _a); + template + Ty simd_cmpneq_ni(Ty _a, Ty _b); + template Ty simd_min_ni(Ty _a, Ty _b);