(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
inline-asm-1.c
       1  /* PR tree-opt/106087,
       2     simple_dce_from_worklist would delete the
       3     inline-asm when it was still being referenced
       4     by the other ssa name. */
       5  
       6  static int t;
       7  
       8  int f(void)
       9  {
      10    int tt, tt1;
      11    asm("":"=r"(tt), "=r"(tt1));
      12    t = tt1;
      13    return tt;
      14  }