Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / darwin-minversion-10.c
blobbf95d46960de57aa3c8f6be50ca7687a18c5e4b4
1 /* PR target/63810: Test that an OS X minimum version with zero-padded
2 minor and tiny numbers less than 10 produces the correct
3 four-character macro. */
4 /* Added by Lawrence Velázquez <vq@larryv.me>. */
6 /* { dg-options "-mmacosx-version-min=10.07.02" } */
7 /* { dg-do compile { target *-*-darwin* } } */
9 int
10 main ()
12 #if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ != 1072
13 fail me;
14 #endif
15 return 0;