aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/darwin-minversion-4.c
blob: 1481aa53dc755f442a2cb2446732343f3afc7508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Test that minor versions greater than 9 produce a six-character macro.  */
/* { dg-options "-mmacosx-version-min=10.10.1" } */
/* { dg-do compile { target *-*-darwin* } } */

int
main ()
{
#if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ != 101001
  fail me;
#endif
  return 0;
}