summaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/complex-double-abi.m
blob: 635352004021675d30819039ff5a2a157f0767d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -emit-llvm -triple i386-apple-macosx10.7.2 %s -o - | FileCheck %s 
// rdar://10331109

@interface CNumber
- (double _Complex)sum;
@end

double _Complex foo(CNumber *x) {
  return [x sum];
}

// CHECK:      [[R:%.*]] = phi double [ [[R1:%.*]], [[MSGCALL:%.*]] ], [ 0.000000e+00, [[NULLINIT:%.*]] ]
// CHECK-NEXT: [[I:%.*]] = phi double [ [[I1:%.*]], [[MSGCALL]] ], [ 0.000000e+00, [[NULLINIT]] ]
// CHECK: store double [[R]]
// CHECK: store double [[I]]