blob: 328ee6bf46f0f7d22cfdfae19877a5f4da5bb33d (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// RUN: %clang_cc1 -x objective-c++ -fms-extensions -rewrite-objc %s -o %t-rw.cpp
// RUN: %clang_cc1 -fsyntax-only -D"__declspec(X)=" %t-rw.cpp
// rdar://11124775
typedef bool BOOL;
BOOL yes() {
return __objc_yes;
}
BOOL no() {
return __objc_no;
}
BOOL which (int flag) {
return flag ? yes() : no();
}
int main() {
which (__objc_yes);
which (__objc_no);
return __objc_yes;
}
|