We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a888d6d commit 93bc1b3Copy full SHA for 93bc1b3
ext/json/ext/simd/simd.h
@@ -133,16 +133,6 @@ ALWAYS_INLINE(static) int string_scan_simd_neon(const char **ptr, const char *en
133
return 0;
134
}
135
136
-static inline uint8x16x4_t load_uint8x16_4(const unsigned char *table)
137
-{
138
- uint8x16x4_t tab;
139
- tab.val[0] = vld1q_u8(table);
140
- tab.val[1] = vld1q_u8(table+16);
141
- tab.val[2] = vld1q_u8(table+32);
142
- tab.val[3] = vld1q_u8(table+48);
143
- return tab;
144
-}
145
-
146
#endif /* ARM Neon Support.*/
147
148
#if defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64) || defined(_M_X64) || defined(_M_AMD64)
0 commit comments