On Sat, Apr 18, 2020 at 8:45 AM Joe via Gcc <gcc@gcc.gnu.org> wrote: > test.c: In function ‘main’: > test.c:5:1: error: insn does not satisfy its constraints:
The constrain_operands function is failing to match the insn to its constraints. Try putting a breakpoint there, and stepping through the code to see what is going wrong. The function is likely called many times, so you might need to figure out which call is the failing one first and only step through that one. Jim