Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / super-classmethod-category.m
blobc19663cec45a673513f9549635080fed34fa9403
1 // RUN: %clang_cc1 -emit-llvm -o %t %s
3 @interface SUPER
4 + (void)Meth;
5 @end
7 @interface CURRENT : SUPER
8 + (void)Meth;
9 @end
11 @implementation CURRENT(CAT)
12 + (void)Meth { [super Meth]; }
13 @end