repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
super-classmethod-category.m
blob
c19663cec45a673513f9549635080fed34fa9403
1
// RUN: %clang_cc1 -emit-llvm -o %t %s
2
3
@interface SUPER
4
+ (void)Meth;
5
@end
6
7
@interface CURRENT : SUPER
8
+ (void)Meth;
9
@end
10
11
@implementation CURRENT(CAT)
12
+ (void)Meth { [super Meth]; }
13
@end