1// REQUIRES: powerpc-registered-target
2// RUN: %clang_cc1 -O2 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s
3
4typedef float v4sf __attribute__ ((vector_size (16)));
5
6struct s { v4sf v; };
7
8v4sf foo (struct s a) {
9  return a.v;
10}
11
12// CHECK-LABEL: define <4 x float> @foo(<4 x float> inreg %a.coerce)
13// CHECK: ret <4 x float> %a.coerce
14