aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/darwin-minversion-4.c
blob: 1cb42ebe3e9eb8692cc326d120405d159d387082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Test that major versions greater than 9 work and have the additional 0.  */
/* { dg-options "-mmacosx-version-min=10.10.0" } */
/* { dg-do compile { target *-*-darwin* } } */

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