Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / PCH / objc_methods.m
blob1543e022f1992f3845fa790b2c75f5cc1fd7d20f
1 // Test this without pch.
2 // RUN: %clang_cc1 -include %S/objc_methods.h -fsyntax-only -Wno-objc-root-class -verify %s
4 // Test with pch.
5 // RUN: %clang_cc1 -x objective-c -emit-pch -o %t %S/objc_methods.h
6 // RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s 
8 // expected-no-diagnostics
10 void func(void) {
11  TestPCH *xx;
12  TestForwardClassDecl *yy;
13 // FIXME:
14 // AliasForTestPCH *zz;
16  xx = [TestPCH alloc];
17  [xx instMethod];