Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Parser / c2x-attribute-keywords.m
blob2296be13cb714cc5be2c9e746f9aa53ce798b664
1 // RUN: %clang_cc1 -fsyntax-only -triple aarch64-none-linux-gnu -target-feature +sme -verify %s
3 enum __arm_streaming E1 : int; // expected-error {{'__arm_streaming' only applies to non-K&R-style functions}}
5 @interface Base
6 @end
8 @interface S : Base
9 - (void) bar;
10 @end
12 @interface T : Base
13 - (S *) foo;
14 @end
17 void f(T *t) {
18   __arm_streaming[[t foo] bar]; // expected-error {{'__arm_streaming' cannot be applied to a statement}}