brintos

brintos / llvm-project-archived public Read only

0
0
Text · 315 B · 1c9e667 Raw
19 lines · plain
1// REQUIRES: x86-registered-target2// RUN: %clang_cc1 -triple x86_64-apple-darwin10  -S -o - %s | FileCheck %s3 4@interface Foo5+(id)alloc;6-(id)init;7-(id)self;8-(id)retain;9-(void)release;10-(id)autorelease;11@end12 13void test(void)14{15	[[[[[[Foo alloc] init] retain] autorelease] self] release];16}17 18// CHECK-NOT: xorb19