directory. - Removed .ll from the svn:ignore lists to try and prevent this. - Added svn:ignore on test/Misc/Output llvm-svn: 55104
12 lines
203 B
C
12 lines
203 B
C
// RUN: clang -emit-llvm %s -o %t
|
|
typedef short __v4hi __attribute__ ((__vector_size__ (8)));
|
|
|
|
void f()
|
|
{
|
|
__v4hi A = (__v4hi)0LL;
|
|
}
|
|
|
|
__v4hi x = {1,2,3};
|
|
__v4hi y = {1,2,3,4};
|
|
__v4hi z = {1,2,3,4,5};
|