1  /* { dg-options "-O -g -w" } */
       2  
       3  void bar (int *);
       4  
       5  void
       6  foo ()
       7  {
       8    int *const pc = __builtin_return_address (0);
       9    bar (pc);
      10  }
       1  /* { dg-options "-O -g -w" } */
       2  
       3  void bar (int *);
       4  
       5  void
       6  foo ()
       7  {
       8    int *const pc = __builtin_return_address (0);
       9    bar (pc);
      10  }