PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / darwin-minversion-5.c
blob09a9d7263b8f5b06bf60258d6053b9811d296da2
1 /* PR target/63810: Test that an OS X minimum version with minor number
2 less than 10 and tiny number greater than 9 produces a four-character
3 macro with the tiny number clamped to 9. */
4 /* Added by Lawrence Velázquez <vq@larryv.me>. */
6 /* { dg-options "-mmacosx-version-min=10.9.10" } */
7 /* { dg-do compile { target *-*-darwin* } } */
9 int
10 main ()
12 #if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ != 1099
13 fail me;
14 #endif
15 return 0;