Sign in
fuchsia
/
third_party
/
swift-clang
/
4deb154edccff8545d801c567628464082e7aeb9
/
.
/
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