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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
darwin-minversion-1.c
blob
5f8524fbcb85174809e3894817de00575d6f67a6
1
/* Basic test for -mmacosx-version-min switch on Darwin. */
2
/* { dg-options "-mmacosx-version-min=10.5" } */
3
/* { dg-do compile { target *-*-darwin* } } */
4
5
int
6
main
()
7
{
8
#if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ != 1050
9
fail me
;
10
#endif
11
return
0
;
12
}