Skip to content

Commit 93bc1b3

Browse files
samyronbyroot
authored andcommitted
Remove unused load_uint8x16_4 function.
1 parent a888d6d commit 93bc1b3

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

ext/json/ext/simd/simd.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -133,16 +133,6 @@ ALWAYS_INLINE(static) int string_scan_simd_neon(const char **ptr, const char *en
133133
return 0;
134134
}
135135

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-
146136
#endif /* ARM Neon Support.*/
147137

148138
#if defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64) || defined(_M_X64) || defined(_M_AMD64)

0 commit comments

Comments
 (0)