modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr47967.c (about)

     1  /* PR tree-optimization/47967 */
     2  /* { dg-require-effective-target untyped_assembly } */
     3  
     4  extern void abort (void);
     5  static void bar ();
     6  
     7  void
     8  foo ()
     9  {
    10    bar (1);
    11  }
    12  
    13  static void
    14  bar (double i)
    15  {
    16    if (i)
    17      abort ();
    18  }