(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
guality/
pr42782.c
       1  /* { dg-options "-g" } */
       2  
       3  #include "guality.h"
       4  
       5  void __attribute__ ((__noinline__))
       6  g (void)
       7  {
       8    asm volatile ("");
       9  }
      10  
      11  int
      12  f (int a)
      13  {
      14    g ();
      15    GUALCHKVAL (a);
      16    return a;
      17  }
      18  
      19  int
      20  main (int argc, char *argv[])
      21  {
      22    f (argc + 2);
      23    f (argc + 5);
      24  }