aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/vector.c
blob: 52ad19fc15f76025dd1cf7d566f0b8449cf0643a (plain)
1
2
3
4
5
6
7
// RUN: clang -emit-llvm %s
typedef short __v4hi __attribute__ ((__vector_size__ (8)));

void f()
{
    __v4hi A = (__v4hi)0LL;
}