forked from OSchip/llvm-project
19 lines
313 B
C++
19 lines
313 B
C++
// RUN: %clang_cc1 -faltivec -fno-lax-vector-conversions -triple powerpc-unknown-unknown -verify %s
|
|
|
|
typedef int V4i __attribute__((vector_size(16)));
|
|
|
|
void f(V4i a)
|
|
{
|
|
}
|
|
|
|
void test()
|
|
{
|
|
V4i vGCC;
|
|
vector int vAltiVec;
|
|
|
|
f(vAltiVec);
|
|
vGCC = vAltiVec;
|
|
vGCC = vGCC > vAltiVec;
|
|
vAltiVec = 0 ? vGCC : vGCC;
|
|
}
|