1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm -o - -triple i386-apple-darwin %s | FileCheck %s 2*f4a2713aSLionel Sambuc // PR11930 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc typedef char vec_t __attribute__ ((__ext_vector_type__ (8))); h()5*f4a2713aSLionel Sambucvoid h() { 6*f4a2713aSLionel Sambuc // CHECK: store <8 x i8> 7*f4a2713aSLionel Sambuc vec_t v(0); 8*f4a2713aSLionel Sambuc } 9