Skip to content

Commit e4bf1a7

Browse files
authored
Merge pull request #6350 from kareem-wolfssl/zd15670
Fix PowerPC inline assembly on old GNU toolchain.
2 parents dcd1428 + 1172354 commit e4bf1a7

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

wolfcrypt/src/sp_int.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3638,7 +3638,6 @@ static WC_INLINE sp_int_digit sp_div_word(sp_int_digit hi, sp_int_digit lo,
36383638
"li %[o], 0 \n\t" \
36393639
: [l] "+r" (vl), [h] "+r" (vh), [o] "=r" (vo) \
36403640
: [a] "r" (va), [b] "r" (vb) \
3641-
: \
36423641
)
36433642
/* Multiply va by vb and add double size result into: vo | vh | vl */
36443643
#define SP_ASM_MUL_ADD(vl, vh, vo, va, vb) \
@@ -3764,7 +3763,6 @@ static WC_INLINE sp_int_digit sp_div_word(sp_int_digit hi, sp_int_digit lo,
37643763
"cntlzw %[n], %[a] \n\t" \
37653764
: [n] "=r" (vn) \
37663765
: [a] "r" (va) \
3767-
: \
37683766
)
37693767

37703768
#define SP_INT_ASM_AVAILABLE

0 commit comments

Comments
 (0)