1 // RUN: %clang_cc1 -fobjc-gc -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
8 void NSAssignArray(NSArray*& target, NSArray* newValue)
10 if (target == newValue)
13 NSArray* oldValue = target;
15 target = [newValue retain];
19 // CHECK: {{call.* @objc_assign_strongCast}}