brintos

brintos / llvm-project-archived public Read only

0
0
Text · 205 B · 720420e Raw
9 lines · cpp
1// RUN: %clang_cc1 -emit-llvm -o - -triple i386-apple-darwin %s | FileCheck %s2// PR119303 4typedef char vec_t __attribute__ ((__ext_vector_type__ (8)));5void h() {6// CHECK: store <8 x i8>7  vec_t v(0);8}9