diff options
Diffstat (limited to 'clang/test/CodeGenCXX/2008-01-12-VecInit.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/2008-01-12-VecInit.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/2008-01-12-VecInit.cpp b/clang/test/CodeGenCXX/2008-01-12-VecInit.cpp new file mode 100644 index 0000000..92bfd51 --- /dev/null +++ b/clang/test/CodeGenCXX/2008-01-12-VecInit.cpp @@ -0,0 +1,5 @@ +// RUN: %clang_cc1 -emit-llvm %s -o - +// rdar://5685492 + +typedef int __attribute__((vector_size(16))) v; +v vt = {1, 2, 3, 4}; |