Replace deprecated wasm_simd128.h intrinsics with new versions

The final version of wasm_simd128.h renamed and deprecated some of the
intrinsics used in XNNPACK WAsm SIMD microkernels. Update them to the new names
of these intrinsics.

PiperOrigin-RevId: 382364703
diff --git a/src/f32-vbinary/gen/vsqrdiffc-wasmsimd-x8.c b/src/f32-vbinary/gen/vsqrdiffc-wasmsimd-x8.c
index 520cf84..fadb351 100644
--- a/src/f32-vbinary/gen/vsqrdiffc-wasmsimd-x8.c
+++ b/src/f32-vbinary/gen/vsqrdiffc-wasmsimd-x8.c
@@ -28,7 +28,7 @@
   assert(b != NULL);
   assert(y != NULL);
 
-  const v128_t vb = wasm_v32x4_load_splat(b);
+  const v128_t vb = wasm_v128_load32_splat(b);
   for (; n >= 8 * sizeof(float); n -= 8 * sizeof(float)) {
     const v128_t va0123 = wasm_v128_load(a);
     const v128_t va4567 = wasm_v128_load(a + 4);