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-vlrelu/wasmsimd-minmax.c.in b/src/f32-vlrelu/wasmsimd-minmax.c.in
index 5a7832f..2e03cea 100644
--- a/src/f32-vlrelu/wasmsimd-minmax.c.in
+++ b/src/f32-vlrelu/wasmsimd-minmax.c.in
@@ -23,7 +23,7 @@
   assert(n != 0);
   assert(n % sizeof(float) == 0);
 
-  const v128_t vslope = wasm_v32x4_load_splat(&params->scalar.slope);
+  const v128_t vslope = wasm_v128_load32_splat(&params->scalar.slope);
   const v128_t vzero = wasm_f32x4_splat(0.0f);
   $if BATCH_TILE > 4:
     for (; n >= ${BATCH_TILE} * sizeof(float); n -= ${BATCH_TILE} * sizeof(float)) {