Mercurial > hg > CbC > CbC_llvm
view clang/test/CodeGenObjC/compound-literal-property-access.m @ 206:f17a3b42b08b
Added tag before-12 for changeset b7591485f4cd
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 07 Jun 2021 21:25:57 +0900 |
parents | 1d019706d866 |
children | c4bab56944e8 |
line wrap: on
line source
// RUN: %clang_cc1 %s -emit-llvm -triple x86_64-apple-darwin -o - | FileCheck %s // rdar://20407999 typedef __attribute__((__ext_vector_type__(2))) float vector_float2; @interface GPAgent2D @property (nonatomic, assign) vector_float2 position; @end @interface GPGoal @end @implementation GPGoal -(void)getForce { GPAgent2D* targetAgent; (vector_float2){targetAgent.position.x, targetAgent.position.y}; } @end // CHECK: [[CL:%.*]] = alloca <2 x float>, align 8 // CHECK: store <2 x float> [[VECINIT:%.*]], <2 x float>* [[CL]] // CHECK: [[FOURTEEN:%.*]] = load <2 x float>, <2 x float>* [[CL]]