You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clang doesn't like the 2-operand form of adcs/sbcs/sbc, with errors like these:
../third_party/x25519-cortex-m4/x25519-cortex-m4-gcc.s:107:2: error: invalid instruction, any one of the following would fix this:
adcs r2,r8
^
../third_party/x25519-cortex-m4/x25519-cortex-m4-gcc.s:107:12: note: too few operands for instruction
adcs r2,r8
^
../third_party/x25519-cortex-m4/x25519-cortex-m4-gcc.s:107:10: note: operand must be a register in range [r0, r7]
adcs r2,r8
^
This regex converts all 2-operand instructions to 3-operand ones, and it compiles:
clang doesn't like the 2-operand form of adcs/sbcs/sbc, with errors like these:
This regex converts all 2-operand instructions to 3-operand ones, and it compiles:
The text was updated successfully, but these errors were encountered: