https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102941

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|ICE in extract_insn, at     |ICE in extract_insn with
                   |recog.c:2769 with           |ccflags output from
                   |-ftrivial-auto-var-init=pat |inline-asm and var with
                   |tern                        |address taken

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Simplified testcase without -ftrivial-auto-var-init=pattern

int test_cmpu_x;
void f(long *);

void
test_cmpu_y() {
  long le;
  f(&le);
  __asm__("cmp %"
          "[x], %"
          "[y]"
          : "=@ccls"(le)
          : [x] ""(test_cmpu_x), [y] ""(test_cmpu_y));
}

Reply via email to