1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s
7 Vector3D(const Vector3D &inVector);
8 Vector3D(float initX, float initY, float initZ);
9 Vector3D &operator=(const Vector3D & rhs);
17 @property (assign) Vector3D position;
19 - (void) setLength: (Vector3D)arg;
25 Vector3D V3D(1.0f, 1.0f, 1.0f);
26 // CHECK: call void @_ZN8Vector3DC1ERKS_
27 myObject.position = V3D;
29 // CHECK: call void @_ZN8Vector3DC1ERKS_
30 myObject.length = V3D;
35 extern "C" void exit(...);
41 typedef struct CGPoint CGPoint;
43 extern "C" const CGPoint CGPointZero;
45 bool operator==(const CGPoint& a, const CGPoint& b);
47 @interface TIconViewSettings
48 @property (assign, nonatomic) CGPoint gridOffset;
51 @implementation TIconViewSettings
52 - (CGPoint) gridOffset
59 if ((self.gridOffset) == CGPointZero)
62 if (self.gridOffset == CGPointZero)