Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Rewriter / objc-bool-literal-check-modern.mm
blob12eaafe7c8e1662265e47cec839a47dec92cff1b
1 // RUN: %clang_cc1 -E %s -o %t.mm
2 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %t.mm -o - | FileCheck %s 
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;
24 // CHECK: return ((bool)1);
25 // CHECK: return ((bool)0);
26 // CHECK: which (((bool)1));
27 // CHECK: which (((bool)0));
28 // CHECK: return ((bool)1);