(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
20031113-1.c
       1  /* On Darwin, the stub for simple_cst_equal was not being emitted at all 
       2     causing the as to die and not create an object file.  */
       3  
       4  int
       5  attribute_list_contained ()
       6  {
       7    return (simple_cst_equal ());
       8  }
       9  int
      10  simple_cst_list_equal ()
      11  {
      12    return (simple_cst_equal ());
      13  }
      14  
      15  
      16  int __attribute__((noinline))
      17  simple_cst_equal ()
      18  {
      19    return simple_cst_list_equal ();
      20  }
      21