xref: /aosp_15_r20/external/clang/test/CodeGenCXX/2012-02-06-VecInitialization.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -emit-llvm -o - -triple i386-apple-darwin %s | FileCheck %s
2 // PR11930
3 
4 typedef char vec_t __attribute__ ((__ext_vector_type__ (8)));
h()5 void h() {
6 // CHECK: store <8 x i8>
7   vec_t v(0);
8 }
9