Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / attr-deprecated-pch.m
blob2b48aea379a08177b5806903d362025636cbfab6
1 // RUN: %clang_cc1 -fsyntax-only -DBOTH -verify %s
2 // If the decls come from a pch, the behavior shouldn't change:
3 // RUN: %clang_cc1 -x objective-c-header %s -emit-pch -o %t
4 // RUN: %clang_cc1 -DUSES -include-pch %t -fsyntax-only -verify %s
5 // expected-no-diagnostics
7 // The slightly strange ifdefs are so that the command that builds the gch file
8 // doesn't need any -D switches, for these would get embedded in the gch.
10 #ifndef USES
11 @interface Interface1
12 - (void)partiallyUnavailableMethod;
13 @end
14 @interface Interface2
15 - (void)partiallyUnavailableMethod __attribute__((unavailable));
16 @end
17 #endif
19 #if defined(USES) || defined(BOTH)
20 void f(id a) {
21   [a partiallyUnavailableMethod];  // no warning, `a` could be an Interface1.
23 #endif