teak-llvm/clang/test/CodeGenObjC/attr-minsize.m
Quentin Colombet 4e172067b2 Update the front end to use minsize attribute
llvm-svn: 167266
2012-11-01 23:55:47 +00:00

13 lines
216 B
Objective-C

// 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