Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / Rewriter / objc-bool-literal-modern.mm
blobc84ff931038140f7b6f3ed5f0e9b591e81312cdb
1 // RUN: %clang_cc1 -x objective-c++ -fms-extensions -rewrite-objc %s -o %t-rw.cpp 
2 // RUN: %clang_cc1 -fsyntax-only -D"__declspec(X)=" %t-rw.cpp
4 typedef bool BOOL;
6 BOOL yes() {
7   return __objc_yes;
10 BOOL no() {
11   return __objc_no;
14 BOOL which (int flag) {
15   return flag ? yes() : no();
18 int main() {
19   which (__objc_yes);
20   which (__objc_no);
21   return __objc_yes;