Skip to content

Commit b1afa4f

Browse files
committed
paeth_arm(): remove abort()
circleci compiles with NEON optimizations as expected
1 parent 62f7bac commit b1afa4f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spng/spng.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4927,7 +4927,7 @@ static uint8x8_t paeth_arm(uint8x8_t a, uint8x8_t b, uint8x8_t c)
49274927
{
49284928
uint8x8_t d, e;
49294929
uint16x8_t p1, pa, pb, pc;
4930-
abort();
4930+
49314931
p1 = vaddl_u8(a, b); /* a + b */
49324932
pc = vaddl_u8(c, c); /* c * 2 */
49334933
pa = vabdl_u8(b, c); /* pa */

0 commit comments

Comments
 (0)