llvm-project/clang/test/CodeGen/vector.c

8 lines
130 B
C
Raw Normal View History

2008-02-02 12:49:12 +08:00
// RUN: clang -emit-llvm %s
typedef short __v4hi __attribute__ ((__vector_size__ (8)));
void f()
{
__v4hi A = (__v4hi)0LL;
2008-02-02 07:27:51 +08:00
}