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>. */ 5 6 /* { dg-options "-mmacosx-version-min=10.9.10" } */ 7 /* { dg-do compile { target *-*-darwin* } } */ 8 9 int main()10main () 11 { 12 #if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ != 1099 13 fail me; 14 #endif 15 return 0; 16 } 17