Files
clang-p2996/clang/test/CodeGen/vector.c
Anders Carlsson 6fa0813186 Add RUN line.
llvm-svn: 46663
2008-02-02 04:49:12 +00:00

8 lines
130 B
C

// RUN: clang -emit-llvm %s
typedef short __v4hi __attribute__ ((__vector_size__ (8)));
void f()
{
__v4hi A = (__v4hi)0LL;
}