hanchenye-llvm-project/clang/test/SemaCXX/altivec.cpp

19 lines
313 B
C++
Raw Normal View History

// 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;
}