(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr63835.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-Os" } */
       3  
       4  int a;
       5  
       6  int
       7  fn1 (int p)
       8  {
       9    return -p;
      10  }
      11  
      12  void
      13  fn2 ()
      14  {
      15    fn1 (-(unsigned int) a);
      16  }