Sign in
llvm
/
clang
/
7d0e090bbc61baebf0be18e4d9ba36615b6cd566
/
.
/
test
/
CodeGenObjC
/
attr-minsize.m
blob: f46107eca61e5bafe6e73121d506d0f7d061d363 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
@interface
Test
-
(
void
)
test
;
@end
@implementation
Test
-
(
void
)
test __attribute__
((
minsize
))
{
// CHECK: define{{.*}}Test test
// CHECK: minsize
}
@end