Home | History | Annotate | Download | only in FrontendC++
      1 // RUN: %llvmgcc -xc++ %s -S -o -
      2 // rdar://5685492
      3 
      4 typedef int __attribute__((vector_size(16))) v;
      5 v vt = {1, 2, 3, 4};
      6 
      7