repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
gcc/
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
darwin-minversion-3.c
blob
d0c5934b449ece562d4fb3dbbe427169cb57ee52
1
/* Test that most-minor versions greater than 9 work. */
2
/* { dg-options "-mmacosx-version-min=10.4.10" } */
3
/* { dg-do compile { target *-*-darwin* } } */
4
5
int
main
(
void
)
6
{
7
#if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ != 1040
8
fail me
;
9
#endif
10
return
0
;
11
}