brintos

brintos / llvm-project-archived public Read only

0
0
Text · 216 B · f46107e Raw
13 lines · plain
1// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s2 3@interface Test4- (void)test;5@end6 7@implementation Test8- (void)test __attribute__((minsize)) {9    // CHECK: define{{.*}}Test test10    // CHECK: minsize11}12@end13