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
[clang-tidy][modernize-use-starts-ends-with] Fix operator rewriting false negative...
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
attr-minsize.m
blob
f46107eca61e5bafe6e73121d506d0f7d061d363
1
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
3
@interface Test
4
- (void)test;
5
@end
6
7
@implementation Test
8
- (void)test __attribute__((minsize)) {
9
// CHECK: define{{.*}}Test test
10
// CHECK: minsize
11
}
12
@end