(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
darwin-minversion-7.c
       1  /* PR target/63810: Test that tiny numbers less than 10 are preserved in
       2     four-character macros.  */
       3  /* Added by Lawrence Velázquez <vq@larryv.me>.  */
       4  
       5  /* { dg-options "-mmacosx-version-min=10.9.1" } */
       6  /* { dg-do compile { target *-*-darwin* } } */
       7  
       8  int
       9  main ()
      10  {
      11  #if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ != 1091
      12    fail me;
      13  #endif
      14    return 0;
      15  }